Lines Matching defs:next
48 state->lencode = state->distcode = state->next = state->codes;
189 next = strm->next_in; \
200 strm->next_in = next; \
219 hold += (unsigned long)(*next++) << bits; \
267 next state. The NEEDBITS() macro is usually the way the state evaluates
282 and a NEEDBITS(8), then BITS(8) would return the next byte in the stream.
286 PULLBYTE() directly in order to pull just enough bytes to decode the next
304 As shown above, if the next state is also the next case, then the break
318 output to the window for the next call of inflate().
334 const unsigned char *next; /* next input */
335 unsigned char *put; /* next output */
456 memcpy(put, next, copy);
458 next += copy;
492 state->next = state->codes;
493 state->lencode = (code const *)(state->next);
495 ret = zlib_inflate_table(CODES, state->lens, 19, &(state->next),
558 state->next = state->codes;
559 state->lencode = (code const *)(state->next);
561 ret = zlib_inflate_table(LENS, state->lens, state->nlen, &(state->next),
568 state->distcode = (code const *)(state->next);
571 &(state->next), &(state->distbits), state->work);