Lines Matching defs:wnext
64 unsigned wnext; /* window write index */
91 wnext = state->wnext;
199 if (wnext == 0) { /* very common case */
209 else if (wnext < op) { /* wrap around window */
210 from += wsize + wnext - op;
211 op -= wnext;
218 if (wnext < len) { /* some from start of window */
219 op = wnext;
229 from += wnext - op;
312 - Three separate decoding do-loops for direct, window, and wnext == 0