Home | History | Annotate | Download | only in zlib

Lines Matching refs:wnext

48  * - Pull out common wnext == 0 case for speed in inflate_fast()

138 state->wnext = 0;
400 state->wnext = 0;
407 state->wnext = 0;
411 dist = state->wsize - state->wnext;
413 zmemcpy(state->window + state->wnext, end - copy, dist);
417 state->wnext = copy;
421 state->wnext += dist;
422 if (state->wnext == state->wsize) state->wnext = 0;
1148 if (copy > state->wnext) {
1149 copy -= state->wnext;
1153 from = state->window + (state->wnext - copy);
1281 zmemcpy(dictionary, state->window + state->wnext,
1282 state->whave - state->wnext);
1283 zmemcpy(dictionary + state->whave - state->wnext,
1284 state->window, state->wnext);