Lines Matching refs:have

449         have = strm->avail_in; \
460 strm->avail_in = have; \
476 if (have == 0) goto inf_leave; \
477 have--; \
594 unsigned have, left; /* available input and output */ in inflate() local
617 in = have; in inflate()
728 if (copy > have) copy = have; in inflate()
740 have -= copy; in inflate()
751 if (have == 0) goto inf_leave; in inflate()
759 } while (len && copy < have); in inflate()
762 have -= copy; in inflate()
773 if (have == 0) goto inf_leave; in inflate()
781 } while (len && copy < have); in inflate()
784 have -= copy; in inflate()
884 if (copy > have) copy = have; in inflate()
888 have -= copy; in inflate()
914 state->have = 0; in inflate()
918 while (state->have < state->ncode) { in inflate()
920 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate()
923 while (state->have < 19) in inflate()
924 state->lens[order[state->have++]] = 0; in inflate()
936 state->have = 0; in inflate()
940 while (state->have < state->nlen + state->ndist) { in inflate()
948 state->lens[state->have++] = here.val; in inflate()
954 if (state->have == 0) { in inflate()
959 len = state->lens[state->have - 1]; in inflate()
977 if (state->have + copy > state->nlen + state->ndist) { in inflate()
983 state->lens[state->have++] = (unsigned short)len; in inflate()
1027 if (have >= 6 && left >= 258) { in inflate()
1355 local unsigned syncsearch(unsigned FAR *have, const unsigned char FAR *buf, in syncsearch() argument
1360 got = *have; in syncsearch()
1371 *have = got; in syncsearch()
1398 state->have = 0; in inflateSync()
1399 syncsearch(&(state->have), buf, len); in inflateSync()
1403 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); in inflateSync()
1409 if (state->have != 4) return Z_DATA_ERROR; in inflateSync()