Lines Matching refs:next
48 state->lencode = state->distcode = state->next = state->codes; in zlib_inflateReset()
189 next = strm->next_in; \
200 strm->next_in = next; \
219 hold += (unsigned long)(*next++) << bits; \
334 const unsigned char *next; /* next input */ in zlib_inflate() local
456 memcpy(put, next, copy); in zlib_inflate()
458 next += copy; in zlib_inflate()
492 state->next = state->codes; in zlib_inflate()
493 state->lencode = (code const *)(state->next); in zlib_inflate()
495 ret = zlib_inflate_table(CODES, state->lens, 19, &(state->next), in zlib_inflate()
558 state->next = state->codes; in zlib_inflate()
559 state->lencode = (code const *)(state->next); in zlib_inflate()
561 ret = zlib_inflate_table(LENS, state->lens, state->nlen, &(state->next), in zlib_inflate()
568 state->distcode = (code const *)(state->next); in zlib_inflate()
571 &(state->next), &(state->distbits), state->work); in zlib_inflate()