Lines Matching refs:wnext
155 state->wnext = 0;
419 state->wnext = 0;
426 state->wnext = 0;
430 dist = state->wsize - state->wnext;
432 zmemcpy(state->window + state->wnext, end - copy, dist);
436 state->wnext = copy;
440 state->wnext += dist;
441 if (state->wnext == state->wsize) state->wnext = 0;
1193 if (copy > state->wnext) {
1194 copy -= state->wnext;
1198 from = state->window + (state->wnext - copy);
1329 zmemcpy(dictionary, state->window + state->wnext,
1330 state->whave - state->wnext);
1331 zmemcpy(dictionary + state->whave - state->wnext,
1332 state->window, state->wnext);