Lines Matching defs:windowBits
241 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
246 int windowBits;
284 if (windowBits < 0) { /* suppress zlib wrapper */
286 windowBits = -windowBits;
289 else if (windowBits > 15) {
291 windowBits -= 16;
295 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
296 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
299 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
308 s->w_bits = (uInt)windowBits;
675 * For the default windowBits of 15 and memLevel of 8, this function returns
681 * For any setting other than those defaults for windowBits and memLevel,
687 * every combination of windowBits and memLevel. But even the conservative