Lines Matching refs:have
123 if (have == 0) { \
124 have = in(in_desc, &next); \
125 if (have == 0) { \
138 have--; \
218 unsigned have; /* available input */
255 have = next != Z_NULL ? strm->avail_in : 0;
322 if (copy > have) copy = have;
325 have -= copy;
352 state->have = 0;
353 while (state->have < state->ncode) {
355 state->lens[order[state->have++]] = (unsigned short)BITS(3);
358 while (state->have < 19)
359 state->lens[order[state->have++]] = 0;
373 state->have = 0;
374 while (state->have < state->nlen + state->ndist) {
383 state->lens[state->have++] = here.val;
389 if (state->have == 0) {
394 len = (unsigned)(state->lens[state->have - 1]);
412 if (state->have + copy > state->nlen + state->ndist) {
418 state->lens[state->have++] = (unsigned short)len;
425 /* check for end-of-block code (better have one) */
593 strm->avail_in = have;