Home | History | Annotate | Download | only in infback9

Lines Matching refs:have

127         if (have == 0) { \
128 have = in(in_desc, &next); \
129 if (have == 0) { \
142 have--; \
227 unsigned have; /* available input */
264 have = next != Z_NULL ? strm->avail_in : 0;
331 if (copy > have) copy = have;
334 have -= copy;
361 state->have = 0;
362 while (state->have < state->ncode) {
364 state->lens[order[state->have++]] = (unsigned short)BITS(3);
367 while (state->have < 19)
368 state->lens[order[state->have++]] = 0;
382 state->have = 0;
383 while (state->have < state->nlen + state->ndist) {
392 state->lens[state->have++] = here.val;
398 if (state->have == 0) {
403 len = (unsigned)(state->lens[state->have - 1]);
421 if (state->have + copy > state->nlen + state->ndist) {
427 state->lens[state->have++] = (unsigned short)len;
434 /* check for end-of-block code (better have one) */
602 strm->avail_in = have;