Lines Matching refs:windowBits
144 int windowBits) in inflateReset2() argument
154 if (windowBits < 0) { in inflateReset2()
156 windowBits = -windowBits; in inflateReset2()
159 wrap = (windowBits >> 4) + 1; in inflateReset2()
161 if (windowBits < 48) in inflateReset2()
162 windowBits &= 15; in inflateReset2()
167 if (windowBits && (windowBits < 8 || windowBits > 15)) in inflateReset2()
169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { in inflateReset2()
176 state->wbits = (unsigned)windowBits; in inflateReset2()
182 int windowBits, in inflateInit2_() argument
214 ret = inflateReset2(strm, windowBits); in inflateInit2_()