Lines Matching full:windowbits
211 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
216 int windowBits;
250 if (windowBits < 0) { /* suppress zlib wrapper */
252 windowBits = -windowBits;
255 else if (windowBits > 15) {
257 windowBits -= 16;
261 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
265 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
273 s->w_bits = windowBits;
476 * For the default windowBits of 15 and memLevel of 8, this function returns
482 * For any setting other than those defaults for windowBits and memLevel,
488 * every combination of windowBits and memLevel. But even the conservative