Lines Matching defs:next
85 static code *next;
93 next = fixed;
94 lenfix = next;
96 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
101 distfix = next;
103 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
124 next = strm->next_in; \
135 strm->next_in = next; \
153 have = in(in_desc, &next); \
155 next = Z_NULL; \
168 hold += (unsigned long)(*next++) << bits; \
245 z_const unsigned char FAR *next; /* next input */
246 unsigned char FAR *put; /* next output */
269 next = strm->next_in;
270 have = next != Z_NULL ? strm->avail_in : 0;
334 zmemcpy(put, next, copy);
336 next += copy;
372 state->next = state->codes;
373 state->lencode = (code const FAR *)(state->next);
375 ret = inflate_table(CODES, state->lens, 19, &(state->next),
446 state->next = state->codes;
447 state->lencode = (code const FAR *)(state->next);
449 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
456 state->distcode = (code const FAR *)(state->next);
459 &(state->next), &(state->distbits), state->work);
617 strm->next_in = next;