Home
last modified time | relevance | path

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

/rk3399_ARM-atf/lib/zlib/
H A Dinftrees.c32 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens, in inflate_table() argument
105 count[lens[sym]]++; in inflate_table()
142 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table()
249 len = lens[work[sym]]; in inflate_table()
H A Dinftrees.h60 int ZLIB_INTERNAL inflate_table(codetype type, unsigned short FAR *lens,
H A Dinflate.c265 while (sym < 144) state->lens[sym++] = 8; in fixedtables()
266 while (sym < 256) state->lens[sym++] = 9; in fixedtables()
267 while (sym < 280) state->lens[sym++] = 7; in fixedtables()
268 while (sym < 288) state->lens[sym++] = 8; in fixedtables()
272 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables()
276 while (sym < 32) state->lens[sym++] = 5; in fixedtables()
279 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables()
920 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate()
924 state->lens[order[state->have++]] = 0; in inflate()
928 ret = inflate_table(CODES, state->lens, 19, &(state->next), in inflate()
[all …]
H A Dinflate.h120 unsigned short lens[320]; /* temporary storage for code lengths */ member