Lines Matching defs:wnext
62 unsigned wnext; /* window write index */
89 wnext = state->wnext;
197 if (wnext == 0) { /* very common case */
207 else if (wnext < op) { /* wrap around window */
208 from += wsize + wnext - op;
209 op -= wnext;
216 if (wnext < len) { /* some from start of window */
217 op = wnext;
227 from += wnext - op;
310 - Three separate decoding do-loops for direct, window, and wnext == 0