Lines Matching full:have
127 if (have == 0) { \
128 have = in(in_desc, &next); \
129 if (have == 0) { \
142 have--; \
227 unsigned have; /* available input */
266 have = next != Z_NULL ? strm->avail_in : 0;
333 if (copy > have) copy = have;
336 have -= copy;
363 state->have = 0;
364 while (state->have < state->ncode) {
366 state->lens[order[state->have++]] = (unsigned short)BITS(3);
369 while (state->have < 19)
370 state->lens[order[state->have++]] = 0;
384 state->have = 0;
385 while (state->have < state->nlen + state->ndist) {
394 state->lens[state->have++] = here.val;
400 if (state->have == 0) {
405 len = (unsigned)(state->lens[state->have - 1]);
423 if (state->have + copy > state->nlen + state->ndist) {
429 state->lens[state->have++] = (unsigned short)len;
436 /* check for end-of-block code (better have one) */
604 strm->avail_in = have;