Lines Matching refs:next
38 state->lencode = state->distcode = state->next = state->codes; in zlib_inflateReset()
170 next = strm->next_in; \
181 strm->next_in = next; \
200 hold += (unsigned long)(*next++) << bits; \
320 const unsigned char *next; /* next input */ in zlib_inflate() local
441 memcpy(put, next, copy); in zlib_inflate()
443 next += copy; in zlib_inflate()
477 state->next = state->codes; in zlib_inflate()
478 state->lencode = (code const *)(state->next); in zlib_inflate()
480 ret = zlib_inflate_table(CODES, state->lens, 19, &(state->next), in zlib_inflate()
543 state->next = state->codes; in zlib_inflate()
544 state->lencode = (code const *)(state->next); in zlib_inflate()
546 ret = zlib_inflate_table(LENS, state->lens, state->nlen, &(state->next), in zlib_inflate()
553 state->distcode = (code const *)(state->next); in zlib_inflate()
556 &(state->next), &(state->distbits), state->work); in zlib_inflate()