Lines Matching refs:level

224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
231 The compression level must be Z_DEFAULT_COMPRESSION, or between 0 and 9:
235 equivalent to level 6).
238 memory, Z_STREAM_ERROR if level is not a valid compression level, or
528 int level,
653 stream will keep the same compression level and any other attributes that
661 int level,
664 Dynamically update the compression level and compression strategy. The
665 interpretation of level and strategy is as in deflateInit2. This can be
668 If the compression level is changed, the input available so far is
669 compressed with the old level (and may be flushed); the new level will take
753 ignored -- the extra flags are set according to the compression level). The
1136 21: FASTEST -- deflate algorithm with only one, lowest compression level
1155 are assumed (compression level and memory usage, standard memory allocation
1176 int level));
1178 Compresses the source buffer into the destination buffer. The level
1187 Z_STREAM_ERROR if the level parameter is invalid.
1230 in fopen ("rb" or "wb") but can also include a compression level ("wb9") or
1304 ZEXTERN int ZEXPORT gzsetparams OF((gzFile file, int level, int strategy));
1306 Dynamically update the compression level or strategy. See the description
1633 ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
1637 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
1647 #define deflateInit(strm, level) \
1648 deflateInit_((strm), (level), ZLIB_VERSION, (int)sizeof(z_stream))
1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1652 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\