Lines Matching refs:windowBits
521 int windowBits,
532 The windowBits parameter is the base two logarithm of the window size
538 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
542 windowBits can also be greater than 15 for optional gzip encoding. Add
543 16 to windowBits to write a simple gzip header and trailer around the
553 as a function of windowBits and memLevel.
736 int windowBits));
742 The windowBits parameter is the base two logarithm of the maximum window
745 instead. windowBits must be greater than or equal to the windowBits value
751 windowBits can also be zero to request that inflate use the window size in
754 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
764 above on the use in deflateInit2() applies to the magnitude of windowBits.
766 windowBits can also be greater than 15 for optional gzip decoding. Add
767 32 to windowBits to enable zlib and gzip decoding with automatic header
848 int windowBits));
851 the wrap and window size requests. The windowBits parameter is interpreted
856 the windowBits parameter is invalid.
949 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
955 derived memory allocation routines are used. windowBits is the base two
958 assured that deflate was used with small window sizes, windowBits must be 15
1537 int windowBits, int memLevel,
1540 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1542 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1550 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1551 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1553 #define inflateInit2(strm, windowBits) \
1554 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1555 #define inflateBackInit(strm, windowBits, window) \
1556 inflateBackInit_((strm), (windowBits), (window), \