Lines Matching refs:have

102 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
464 have = strm->avail_in; \
475 strm->avail_in = have; \
491 if (have == 0) goto inf_leave; \
492 have--; \
610 unsigned have, left; /* available input and output */ in inflate() local
633 in = have; in inflate()
744 if (copy > have) copy = have; in inflate()
756 have -= copy; in inflate()
767 if (have == 0) goto inf_leave; in inflate()
775 } while (len && copy < have); in inflate()
778 have -= copy; in inflate()
789 if (have == 0) goto inf_leave; in inflate()
797 } while (len && copy < have); in inflate()
800 have -= copy; in inflate()
900 if (copy > have) copy = have; in inflate()
904 have -= copy; in inflate()
930 state->have = 0; in inflate()
934 while (state->have < state->ncode) { in inflate()
936 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate()
939 while (state->have < 19) in inflate()
940 state->lens[order[state->have++]] = 0; in inflate()
952 state->have = 0; in inflate()
956 while (state->have < state->nlen + state->ndist) { in inflate()
964 state->lens[state->have++] = here.val; in inflate()
970 if (state->have == 0) { in inflate()
975 len = state->lens[state->have - 1]; in inflate()
993 if (state->have + copy > state->nlen + state->ndist) { in inflate()
999 state->lens[state->have++] = (unsigned short)len; in inflate()
1043 if (have >= 6 && left >= 258) { in inflate()
1375 local unsigned syncsearch(unsigned FAR *have, const unsigned char FAR *buf, in syncsearch() argument
1381 got = *have; in syncsearch()
1392 *have = got; in syncsearch()
1420 state->have = 0; in inflateSync()
1421 syncsearch(&(state->have), buf, len); in inflateSync()
1425 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); in inflateSync()
1431 if (state->have != 4) return Z_DATA_ERROR; in inflateSync()