Lines Matching full:windowbits
213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218 int windowBits;
261 if (windowBits < 0) { /* suppress zlib wrapper */
263 windowBits = -windowBits;
266 else if (windowBits > 15) {
268 windowBits -= 16;
272 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
276 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
284 s->w_bits = windowBits;
550 * For the default windowBits of 15 and memLevel of 8, this function returns
556 * For any setting other than those defaults for windowBits and memLevel,
562 * every combination of windowBits and memLevel. But even the conservative