Lines Matching refs:compression
3 The **Zip** module provides APIs for file compression and decompression.
2719 Initializes the internal stream state for compression. This API uses a promise to return the result…
2779 Initializes the internal stream state for compression. This API uses a promise to return the result…
2910 Frees up all dynamically allocated data structures of the compression stream. This API uses a promi…
3109 Copies the compression stream. This API uses a promise to return the result. The result state is re…
3173 Initializes the compression dictionary from a given sequence of bytes. This API uses a promise to r…
3440 Resets the initialized deflate compression stream, but retains the compression parameters and dicti…
3568 Dynamically updates the compression level and compression strategy. This API uses a promise to retu…
3634 Inserts bits and values into the compression stream. This API uses a promise to return the result. …
3718 | COMPRESS_LEVEL_BEST_COMPRESSION | 9 | Compression level 9 that gives the best compression. …
3719 | COMPRESS_LEVEL_DEFAULT_COMPRESSION | -1 | Default compression level. |
3729 | MEM_LEVEL_MIN | 1 | Minimum memory used by the **zlib** API during compression.|
3730 | MEM_LEVEL_MAX | 9 | Maximum memory used by the **zlib** API during compression.|
3731 | MEM_LEVEL_DEFAULT | 8 | Default memory used by the **zlib** API during compression.|
3741 | COMPRESS_STRATEGY_DEFAULT_STRATEGY | 0 | Default compression strategy. |
3742 | COMPRESS_STRATEGY_FILTERED | 1 | Filtered compression strategy.|
3743 | COMPRESS_STRATEGY_HUFFMAN_ONLY | 2 | Huffman coding compression strategy. |
3744 | COMPRESS_STRATEGY_RLE | 3 | RLE compression strategy. |
3745 | COMPRESS_STRATEGY_FIXED | 4 | Fixed compression strategy. |
3766 | SYNC_FLUSH | 2 | Forcibly outputs all compressed data while maintaining the compression str…
3767 | FULL_FLUSH | 3 | Resets the compression state. |
3768 | FINISH | 4 | Ends the compression or decompression process. |
3805 | nextOut | ArrayBuffer | Yes | No | Output bytes after compression. …
4262 Clears all pending output of the file. Closes the file and releases decompression or compression st…
5084 Dynamically updates the compression level and compression policy of a file. This API uses a promise…