Lines Matching defs:windowBits
143 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) {
151 /* extract wrap request from windowBits parameter */
152 if (windowBits < 0) {
153 if (windowBits < -15)
156 windowBits = -windowBits;
159 wrap = (windowBits >> 4) + 5;
161 if (windowBits < 48)
162 windowBits &= 15;
167 if (windowBits && (windowBits < 8 || windowBits > 15))
169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
176 state->wbits = (unsigned)windowBits;
180 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits,
212 ret = inflateReset2(strm, windowBits);