Lines Matching refs:wnext
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
138 state->wnext = 0;
398 state->wnext = 0;
405 state->wnext = 0;
409 dist = state->wsize - state->wnext;
411 zmemcpy(state->window + state->wnext, end - copy, dist);
415 state->wnext = copy;
419 state->wnext += dist;
420 if (state->wnext == state->wsize) state->wnext = 0;
1261 if (copy > state->wnext) {
1262 copy -= state->wnext;
1266 from = state->window + (state->wnext - copy);
1416 zmemcpy(dictionary, state->window + state->wnext,
1417 state->whave - state->wnext);
1418 zmemcpy(dictionary + state->whave - state->wnext,
1419 state->window, state->wnext);