Lines Matching refs:windowBits
193 * Maximum value for windowBits in deflateInit2 and inflateInit2
204 * 1 << (windowBits+2) + 1 << (memLevel+9)
206 * that is: 128K for windowBits=15 + 128K for memLevel = 8 (default
215 * The memory requirements for inflate are (in bytes) 1 << windowBits
216 * that is, 32K for windowBits=15 (default value) plus a few kilobytes
741 * int windowBits,
753 * The windowBits parameter is the base two logarithm of the window
765 * windowBits and memLevel.
782 * entire input data, or have at least 1<<(windowBits+1) bytes and be
899 * int windowBits));
905 * The windowBits parameter is the base two logarithm of the maximum
915 * entire output data, or have at least 1<<windowBits bytes. If
929 * windowBits < 8). msg is set to null if there is no error message.
1178 int windowBits, int memLevel, int strategy,
1180 ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
1186 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
1187 deflateInit2_((strm), (level), (method), (windowBits), (memLevel), \
1189 #define inflateInit2(strm, windowBits) \
1190 inflateInit2_((strm), (windowBits), ZLIB_VERSION, sizeof (z_stream))