Lines Matching refs:windowBits
526 int windowBits,
537 The windowBits parameter is the base two logarithm of the window size
543 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
547 windowBits can also be greater than 15 for optional gzip encoding. Add
548 16 to windowBits to write a simple gzip header and trailer around the
558 as a function of windowBits and memLevel.
741 int windowBits));
747 The windowBits parameter is the base two logarithm of the maximum window
750 instead. windowBits must be greater than or equal to the windowBits value
756 windowBits can also be zero to request that inflate use the window size in
759 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
769 above on the use in deflateInit2() applies to the magnitude of windowBits.
771 windowBits can also be greater than 15 for optional gzip decoding. Add
772 32 to windowBits to enable zlib and gzip decoding with automatic header
853 int windowBits));
856 the wrap and window size requests. The windowBits parameter is interpreted
861 the windowBits parameter is invalid.
954 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
960 derived memory allocation routines are used. windowBits is the base two
963 assured that deflate was used with small window sizes, windowBits must be 15
1542 int windowBits, int memLevel,
1545 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1547 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1555 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1556 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1558 #define inflateInit2(strm, windowBits) \
1559 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1560 #define inflateBackInit(strm, windowBits, window) \
1561 inflateBackInit_((strm), (windowBits), (window), \