Home
last modified time | relevance | path

Searched refs:wnext (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/contrib/zlib/
H A Dinffast.c63 unsigned wnext; /* window write index */ in inflate_fast() local
90 wnext = state->wnext; in inflate_fast()
198 if (wnext == 0) { /* very common case */ in inflate_fast()
208 else if (wnext < op) { /* wrap around window */ in inflate_fast()
209 from += wsize + wnext - op; in inflate_fast()
210 op -= wnext; in inflate_fast()
217 if (wnext < len) { /* some from start of window */ in inflate_fast()
218 op = wnext; in inflate_fast()
228 from += wnext - op; in inflate_fast()
H A Dinflate.c151 state->wnext = 0; in inflateReset()
400 state->wnext = 0; in updatewindow()
407 state->wnext = 0; in updatewindow()
411 dist = state->wsize - state->wnext; in updatewindow()
417 state->wnext = copy; in updatewindow()
421 state->wnext += dist; in updatewindow()
422 if (state->wnext == state->wsize) state->wnext = 0; in updatewindow()
1173 if (copy > state->wnext) { in inflate()
1174 copy -= state->wnext; in inflate()
1307 state->whave - state->wnext); in inflateGetDictionary()
[all …]
H A Dinflate.h99 unsigned wnext; /* window write index */ member
H A Dinfback.c63 state->wnext = 0; in inflateBackInit_()