Lines Matching refs:wnext
48 * - Pull out common wnext == 0 case for speed in inflate_fast()
138 state->wnext = 0;
397 state->wnext = 0;
404 state->wnext = 0;
408 dist = state->wsize - state->wnext;
410 zmemcpy(state->window + state->wnext, end - copy, dist);
414 state->wnext = copy;
418 state->wnext += dist;
419 if (state->wnext == state->wsize) state->wnext = 0;
1170 if (copy > state->wnext) {
1171 copy -= state->wnext;
1175 from = state->window + (state->wnext - copy);
1323 zmemcpy(dictionary, state->window + state->wnext,
1324 state->whave - state->wnext);
1325 zmemcpy(dictionary + state->whave - state->wnext,
1326 state->window, state->wnext);