• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zlib/

Lines Matching refs:windowBits

541                                      int  windowBits,
552 The windowBits parameter is the base two logarithm of the window size
558 For the current implementation of deflate(), a windowBits value of 8 (a
566 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
570 windowBits can also be greater than 15 for optional gzip encoding. Add
571 16 to windowBits to write a simple gzip header and trailer around the
586 as a function of windowBits and memLevel.
834 int windowBits));
840 The windowBits parameter is the base two logarithm of the maximum window
843 instead. windowBits must be greater than or equal to the windowBits value
849 windowBits can also be zero to request that inflate use the window size in
852 windowBits can also be -8..-15 for raw inflate. In this case, -windowBits
862 above on the use in deflateInit2() applies to the magnitude of windowBits.
864 windowBits can also be greater than 15 for optional gzip decoding. Add
865 32 to windowBits to enable zlib and gzip decoding with automatic header
969 int windowBits));
972 the wrap and window size requests. The windowBits parameter is interpreted
979 the windowBits parameter is invalid.
1072 ZEXTERN int ZEXPORT inflateBackInit OF((z_streamp strm, int windowBits,
1078 derived memory allocation routines are used. windowBits is the base two
1081 assured that deflate was used with small window sizes, windowBits must be 15
1773 int windowBits, int memLevel,
1776 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1778 ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
1787 # define z_deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1788 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1790 # define z_inflateInit2(strm, windowBits) \
1791 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1793 # define z_inflateBackInit(strm, windowBits, window) \
1794 inflateBackInit_((strm), (windowBits), (window), \
1801 # define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1802 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
1804 # define inflateInit2(strm, windowBits) \
1805 inflateInit2_((strm), (windowBits), ZLIB_VERSION, \
1807 # define inflateBackInit(strm, windowBits, window) \
1808 inflateBackInit_((strm), (windowBits), (window), \