Lines Matching refs:have
128 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
432 have = strm->avail_in; \
443 strm->avail_in = have; \
459 if (have == 0) goto inf_leave; \
460 have--; \
584 unsigned have, left; /* available input and output */ in inflate() local
607 in = have; in inflate()
710 if (copy > have) copy = have; in inflate()
721 have -= copy; in inflate()
732 if (have == 0) goto inf_leave; in inflate()
740 } while (len && copy < have); in inflate()
743 have -= copy; in inflate()
754 if (have == 0) goto inf_leave; in inflate()
762 } while (len && copy < have); in inflate()
765 have -= copy; in inflate()
859 if (copy > have) copy = have; in inflate()
863 have -= copy; in inflate()
889 state->have = 0; in inflate()
893 while (state->have < state->ncode) { in inflate()
895 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate()
898 while (state->have < 19) in inflate()
899 state->lens[order[state->have++]] = 0; in inflate()
911 state->have = 0; in inflate()
915 while (state->have < state->nlen + state->ndist) { in inflate()
924 state->lens[state->have++] = this.val; in inflate()
930 if (state->have == 0) { in inflate()
935 len = state->lens[state->have - 1]; in inflate()
953 if (state->have + copy > state->nlen + state->ndist) { in inflate()
959 state->lens[state->have++] = (unsigned short)len; in inflate()
990 if (have >= 6 && left >= 258) { in inflate()
1282 syncsearch(unsigned FAR *have, unsigned char FAR *buf, unsigned len) in syncsearch() argument
1287 got = *have; in syncsearch()
1298 *have = got; in syncsearch()
1326 state->have = 0; in inflateSync()
1327 syncsearch(&(state->have), buf, len); in inflateSync()
1331 len = syncsearch(&(state->have), strm->next_in, strm->avail_in); in inflateSync()
1337 if (state->have != 4) return Z_DATA_ERROR; in inflateSync()