Home | History | Annotate | Download | only in zlib

Lines Matching refs:wnext

48  * - Pull out common wnext == 0 case for speed in inflate_fast()
120 state->wnext = 0;
378 state->wnext = 0;
386 state->wnext = 0;
390 dist = state->wsize - state->wnext;
392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist);
396 state->wnext = copy;
400 state->wnext += dist;
401 if (state->wnext == state->wsize) state->wnext = 0;
1133 if (copy > state->wnext) {
1134 copy -= state->wnext;
1138 from = state->window + (state->wnext - copy);