Lines Matching refs:windowBits
141 int ZEXPORT inflateReset2(z_streamp strm, int windowBits) {
149 /* extract wrap request from windowBits parameter */
150 if (windowBits < 0) {
151 if (windowBits < -15)
154 windowBits = -windowBits;
157 wrap = (windowBits >> 4) + 5;
159 if (windowBits < 48)
160 windowBits &= 15;
165 if (windowBits && (windowBits < 8 || windowBits > 15))
167 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) {
174 state->wbits = (unsigned)windowBits;
178 int ZEXPORT inflateInit2_(z_streamp strm, int windowBits,
211 ret = inflateReset2(strm, windowBits);