Home | History | Annotate | Download | only in ZLib

Lines Matching refs:DIST

402     unsigned dist;
428 dist = state->wsize - state->wnext;
429 if (dist > copy) dist = copy;
430 zmemcpy(state->window + state->wnext, end - copy, dist);
431 copy -= dist;
438 state->wnext += dist;
440 if (state->whave < state->wsize) state->whave += dist;
1102 state->mode = DIST;
1103 case DIST: