Lines Matching full:windowbits
530 int windowBits,
541 The windowBits parameter is the base two logarithm of the window size
547 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
551 windowBits can also be greater than 15 for optional gzip encoding. Add
552 16 to windowBits to write a simple gzip header and trailer around the
562 as a function of windowBits and memLevel.
771 int windowBits));
777 The windowBits parameter is the base two logarithm of the maximum window
780 instead. windowBits must be greater than or equal to the windowBits value
786 windowBits can also be zero to request that inflate use the window size in
789 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
799 above on the use in deflateInit2() applies to the magnitude of windowBits.
801 windowBits can also be greater than 15 for optional gzip decoding. Add
802 32 to windowBits to enable zlib and gzip decoding with automatic header
903 int windowBits));
906 the wrap and window size requests. The windowBits parameter is interpreted
911 the windowBits parameter is invalid.
1004 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
1010 derived memory allocation routines are used. windowBits is the base two
1013 assured that deflate was used with small window sizes, windowBits must be 15
1638 int windowBits, int memLevel,
1641 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1643 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1651 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1652 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1654 #define inflateInit2(strm, windowBits) \
1655 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1657 #define inflateBackInit(strm, windowBits, window) \
1658 inflateBackInit_((strm), (windowBits), (window), \