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
437 memcpy(put, next, copy); in zlib_inflate()
439 next += copy; in zlib_inflate()
472 state->next = state->codes; in zlib_inflate()
473 state->lencode = (code const *)(state->next); in zlib_inflate()
475 ret = zlib_inflate_table(CODES, state->lens, 19, &(state->next), in zlib_inflate()
537 state->next = state->codes; in zlib_inflate()
538 state->lencode = (code const *)(state->next); in zlib_inflate()
540 ret = zlib_inflate_table(LENS, state->lens, state->nlen, &(state->next), in zlib_inflate()
547 state->distcode = (code const *)(state->next); in zlib_inflate()
550 &(state->next), &(state->distbits), state->work); in zlib_inflate()