Home
last modified time | relevance | path

Searched refs:whave (Results 1 – 3 of 3) sorted by relevance

/rk3399_ARM-atf/lib/zlib/
H A Dinffast.c61 unsigned whave; /* valid bytes in the window */ in inflate_fast() local
88 whave = state->whave; in inflate_fast()
169 if (op > whave) { in inflate_fast()
177 if (len <= op - whave) { in inflate_fast()
183 len -= op - whave; in inflate_fast()
186 } while (--op > whave); in inflate_fast()
H A Dinflate.h98 unsigned whave; /* valid bytes in the window */ member
H A Dinflate.c136 state->whave = 0; in inflateReset()
386 state->whave = 0; in updatewindow()
393 state->whave = state->wsize; in updatewindow()
403 state->whave = state->wsize; in updatewindow()
408 if (state->whave < state->wsize) state->whave += dist; in updatewindow()
1137 if (copy > state->whave) { in inflate()
1145 copy -= state->whave; in inflate()
1287 if (state->whave && dictionary != Z_NULL) { in inflateGetDictionary()
1289 state->whave - state->wnext); in inflateGetDictionary()
1290 zmemcpy(dictionary + state->whave - state->wnext, in inflateGetDictionary()
[all …]