Lines Matching refs:windowBits

485                                      int  windowBits,
496 The windowBits parameter is the base two logarithm of the window size
502 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
506 windowBits can also be greater than 15 for optional gzip encoding. Add
507 16 to windowBits to write a simple gzip header and trailer around the
517 usage as a function of windowBits and memLevel.
697 int windowBits));
703 The windowBits parameter is the base two logarithm of the maximum window
706 instead. windowBits must be greater than or equal to the windowBits value
712 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
722 above on the use in deflateInit2() applies to the magnitude of windowBits.
724 windowBits can also be greater than 15 for optional gzip decoding. Add
725 32 to windowBits to enable zlib and gzip decoding with automatic header
858 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
864 derived memory allocation routines are used. windowBits is the base two
867 assured that deflate was used with small window sizes, windowBits must be 15
1324 int windowBits, int memLevel,
1327 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1329 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1337 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1338 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1340 #define inflateInit2(strm, windowBits) \
1341 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1342 #define inflateBackInit(strm, windowBits, window) \
1343 inflateBackInit_((strm), (windowBits), (window), \