Home | History | Annotate | Download | only in ZLib

Lines Matching refs:wnext

48  * - Pull out common wnext == 0 case for speed in inflate_fast()
153 state->wnext = 0;
417 state->wnext = 0;
424 state->wnext = 0;
428 dist = state->wsize - state->wnext;
430 zmemcpy(state->window + state->wnext, end - copy, dist);
434 state->wnext = copy;
438 state->wnext += dist;
439 if (state->wnext == state->wsize) state->wnext = 0;
1171 if (copy > state->wnext) {
1172 copy -= state->wnext;
1176 from = state->window + (state->wnext - copy);
1305 zmemcpy(dictionary, state->window + state->wnext,
1306 state->whave - state->wnext);
1307 zmemcpy(dictionary + state->whave - state->wnext,
1308 state->window, state->wnext);