Home | History | Annotate | Download | only in zlib

Lines Matching refs:wnext

48  * - Pull out common wnext == 0 case for speed in inflate_fast()
137 state->wnext = 0;
398 state->wnext = 0;
406 state->wnext = 0;
410 dist = state->wsize - state->wnext;
412 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist);
416 state->wnext = copy;
420 state->wnext += dist;
421 if (state->wnext == state->wsize) state->wnext = 0;
1152 if (copy > state->wnext) {
1153 copy -= state->wnext;
1157 from = state->window + (state->wnext - copy);