Home | History | Annotate | Download | only in zlib

Lines Matching refs:wnext

50  * - Pull out common wnext == 0 case for speed in inflate_fast()
139 state->wnext = 0;
387 state->wnext = 0;
394 state->wnext = 0;
398 dist = state->wsize - state->wnext;
400 zmemcpy(state->window + state->wnext, end - copy, dist);
404 state->wnext = copy;
408 state->wnext += dist;
409 if (state->wnext == state->wsize) state->wnext = 0;
1166 if (copy > state->wnext) {
1167 copy -= state->wnext;
1171 from = state->window + (state->wnext - copy);
1297 zmemcpy(dictionary, state->window + state->wnext,
1298 state->whave - state->wnext);
1299 zmemcpy(dictionary + state->whave - state->wnext,
1300 state->window, state->wnext);