Lines Matching refs:wnext
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
137 state->wnext = 0;
386 state->wnext = 0;
393 state->wnext = 0;
397 dist = state->wsize - state->wnext;
399 zmemcpy(state->window + state->wnext, end - copy, dist);
403 state->wnext = copy;
407 state->wnext += dist;
408 if (state->wnext == state->wsize) state->wnext = 0;
1159 if (copy > state->wnext) {
1160 copy -= state->wnext;
1164 from = state->window + (state->wnext - copy);
1290 zmemcpy(dictionary, state->window + state->wnext,
1291 state->whave - state->wnext);
1292 zmemcpy(dictionary + state->whave - state->wnext,
1293 state->window, state->wnext);