• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/

Lines Matching refs:windowBits

483                                      int  windowBits,
494 The windowBits parameter is the base two logarithm of the window size
500 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
504 windowBits can also be greater than 15 for optional gzip encoding. Add
505 16 to windowBits to write a simple gzip header and trailer around the
515 usage as a function of windowBits and memLevel.
695 int windowBits));
701 The windowBits parameter is the base two logarithm of the maximum window
704 instead. windowBits must be greater than or equal to the windowBits value
710 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
720 above on the use in deflateInit2() applies to the magnitude of windowBits.
722 windowBits can also be greater than 15 for optional gzip decoding. Add
723 32 to windowBits to enable zlib and gzip decoding with automatic header
856 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
862 derived memory allocation routines are used. windowBits is the base two
865 assured that deflate was used with small window sizes, windowBits must be 15
1322 int windowBits, int memLevel,
1325 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1327 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1335 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1336 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1338 #define inflateInit2(strm, windowBits) \
1339 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof(z_stream))
1340 #define inflateBackInit(strm, windowBits, window) \
1341 inflateBackInit_((strm), (windowBits), (window), \