Lines Matching defs:windowBits
382 int windowBits, int memLevel, int strategy,
416 if (windowBits < 0) { /* suppress zlib wrapper */
418 if (windowBits < -15)
420 windowBits = -windowBits;
423 else if (windowBits > 15) {
425 windowBits -= 16;
429 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
430 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
433 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */
442 s->w_bits = (uInt)windowBits;
813 * For the default windowBits of 15 and memLevel of 8, this function returns a
817 * For any setting other than those defaults for windowBits and memLevel, one
827 * the symbols buffer size (windowBits <= memLevel + 7). In that case some of