Lines Matching defs:wnext
66 unsigned wnext; /* window write index */
93 wnext = state->wnext;
201 if (wnext == 0) { /* very common case */
211 else if (wnext < op) { /* wrap around window */
212 from += wsize + wnext - op;
213 op -= wnext;
220 if (wnext < len) { /* some from start of window */
221 op = wnext;
231 from += wnext - op;
317 - Three separate decoding do-loops for direct, window, and wnext == 0