Lines Matching refs:next
138 state->lencode = state->distcode = state->next = state->codes;
292 static code *next; local
300 next = fixed;
301 lenfix = next;
303 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
308 distfix = next;
310 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
483 next = strm->next_in; \
494 strm->next_in = next; \
513 hold += (unsigned long)(*next++) << bits; \
630 z_const unsigned char FAR *next; /* next input */ local
772 zmemcpy(state->head->extra + len, next,
777 state->check = crc32(state->check, next, copy);
779 next += copy;
792 len = (unsigned)(next[copy++]);
799 state->check = crc32(state->check, next, copy);
801 next += copy;
814 len = (unsigned)(next[copy++]);
821 state->check = crc32(state->check, next, copy);
823 next += copy;
925 zmemcpy(put, next, copy);
927 next += copy;
963 state->next = state->codes;
964 state->lencode = (const code FAR *)(state->next);
966 ret = inflate_table(CODES, state->lens, 19, &(state->next),
1038 state->next = state->codes;
1039 state->lencode = (const code FAR *)(state->next);
1041 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next),
1048 state->distcode = (const code FAR *)(state->next);
1051 &(state->next), &(state->distbits), state->work);
1410 unsigned next; local
1413 next = 0;
1414 while (next < len && got < 4) {
1415 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1417 else if (buf[next])
1421 next++;
1424 return next;
1532 copy->next = copy->codes + (state->next - state->codes);
1594 return (unsigned long)(state->next - state->codes);