Lines Matching refs:next

123     state->lencode = state->distcode = state->next = state->codes;  in inflateResetKeep()
261 static code *next; in fixedtables() local
269 next = fixed; in fixedtables()
270 lenfix = next; in fixedtables()
272 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables()
277 distfix = next; in fixedtables()
279 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables()
448 next = strm->next_in; \
459 strm->next_in = next; \
478 hold += (unsigned long)(*next++) << bits; \
592 z_const unsigned char FAR *next; /* next input */ in inflate() local
734 zmemcpy(state->head->extra + len, next, in inflate()
739 state->check = crc32(state->check, next, copy); in inflate()
741 next += copy; in inflate()
754 len = (unsigned)(next[copy++]); in inflate()
761 state->check = crc32(state->check, next, copy); in inflate()
763 next += copy; in inflate()
776 len = (unsigned)(next[copy++]); in inflate()
783 state->check = crc32(state->check, next, copy); in inflate()
785 next += copy; in inflate()
887 zmemcpy(put, next, copy); in inflate()
889 next += copy; in inflate()
925 state->next = state->codes; in inflate()
926 state->lencode = (const code FAR *)(state->next); in inflate()
928 ret = inflate_table(CODES, state->lens, 19, &(state->next), in inflate()
1000 state->next = state->codes; in inflate()
1001 state->lencode = (const code FAR *)(state->next); in inflate()
1003 ret = inflate_table(LENS, state->lens, state->nlen, &(state->next), in inflate()
1010 state->distcode = (const code FAR *)(state->next); in inflate()
1013 &(state->next), &(state->distbits), state->work); in inflate()
1358 unsigned next; in syncsearch() local
1361 next = 0; in syncsearch()
1362 while (next < len && got < 4) { in syncsearch()
1363 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff)) in syncsearch()
1365 else if (buf[next]) in syncsearch()
1369 next++; in syncsearch()
1372 return next; in syncsearch()
1473 copy->next = copy->codes + (state->next - state->codes); in inflateCopy()
1525 return (unsigned long)(state->next - state->codes); in inflateCodesUsed()