Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/zlib/
H A Dinfback.c112 state->lenbits = 9; in fixedtables()
374 state->lenbits = 7; in inflateBack()
376 &(state->lenbits), state->work); in inflateBack()
388 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
448 state->lenbits = 9; in inflateBack()
450 &(state->lenbits), state->work); in inflateBack()
482 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
H A Dinflate.h112 unsigned lenbits; /* index bits for lencode */ member
H A Dinflate.c288 state->lenbits = 9; in fixedtables()
927 state->lenbits = 7; in inflate()
929 &(state->lenbits), state->work); in inflate()
942 here = state->lencode[BITS(state->lenbits)]; in inflate()
1002 state->lenbits = 9; in inflate()
1004 &(state->lenbits), state->work); in inflate()
1037 here = state->lencode[BITS(state->lenbits)]; in inflate()
H A Dinffast.c95 lmask = (1U << state->lenbits) - 1; in inflate_fast()