Searched refs:whave (Results 1 – 4 of 4) sorted by relevance
61 unsigned whave; /* valid bytes in the window */ in inflate_fast() local88 whave = state->whave; in inflate_fast()170 if (op > whave) { in inflate_fast()178 if (len <= op - whave) { in inflate_fast()184 len -= op - whave; in inflate_fast()187 } while (--op > whave); in inflate_fast()
61 state->whave = 0; in inflateBackInit_()156 state->whave = left; \217 state->whave = 0; in inflateBack()426 if (state->whave < state->wsize) in inflateBack()427 state->whave = state->wsize - left; in inflateBack()518 if (state->offset > state->wsize - (state->whave < state->wsize ? in inflateBack()
131 state->whave = 0; in inflateReset()270 state->whave = 0; in updatewindow()277 state->whave = state->wsize; in updatewindow()287 state->whave = state->wsize; in updatewindow()292 if (state->whave < state->wsize) state->whave += dist; in updatewindow()1025 if (copy > state->whave) { in inflate()1034 copy -= state->whave; in inflate()1176 if (state->whave && dictionary != Z_NULL) { in inflateGetDictionary()1178 state->whave - state->wnext); in inflateGetDictionary()1179 zmemcpy(dictionary + state->whave - state->wnext, in inflateGetDictionary()[all …]
98 unsigned whave; /* valid bytes in the window */ member