Home
last modified time | relevance | path

Searched refs:lenbits (Results 1 – 4 of 4) sorted by relevance

/xnu-8020.121.3/libkern/zlib/
H A Dinfback.c138 state->lenbits = 9; in fixedtables()
402 state->lenbits = 7; in inflateBack()
404 &(state->lenbits), state->work); in inflateBack()
416 this = state->lencode[BITS(state->lenbits)]; in inflateBack()
468 state->lenbits = 9; in inflateBack()
470 &(state->lenbits), state->work); in inflateBack()
502 this = state->lencode[BITS(state->lenbits)]; in inflateBack()
H A Dinflate.h131 unsigned lenbits; /* index bits for lencode */ member
H A Dinflate.c267 state->lenbits = 9; in fixedtables()
902 state->lenbits = 7; in inflate()
904 &(state->lenbits), state->work); in inflate()
917 this = state->lencode[BITS(state->lenbits)]; in inflate()
969 state->lenbits = 9; in inflate()
971 &(state->lenbits), state->work); in inflate()
997 this = state->lencode[BITS(state->lenbits)]; in inflate()
H A Dinffast.c125 lmask = (1U << state->lenbits) - 1; in inflate_fast()