Home | History | Annotate | Download | only in zlib_v128

Lines Matching refs:wnext

82     unsigned wnext;             /* window write index */
109 wnext = state->wnext;
217 if (wnext == 0) { /* very common case */
227 else if (wnext < op) { /* wrap around window */
228 from += wsize + wnext - op;
229 op -= wnext;
236 if (wnext < len) { /* some from start of window */
237 op = wnext;
247 from += wnext - op;
330 - Three separate decoding do-loops for direct, window, and wnext == 0