Home | History | Annotate | Download | only in zlib

Lines Matching refs:wnext

65     unsigned wnext;             /* window write index */
92 wnext = state->wnext;
200 if (wnext == 0) { /* very common case */
210 else if (wnext < op) { /* wrap around window */
211 from += wsize + wnext - op;
212 op -= wnext;
219 if (wnext < len) { /* some from start of window */
220 op = wnext;
230 from += wnext - op;
313 - Three separate decoding do-loops for direct, window, and wnext == 0