Home
last modified time | relevance | path

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

/optee_os/core/lib/zlib/
H A Dinftrees.c33 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
35 unsigned short FAR *lens;
111 count[lens[sym]]++;
148 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
255 len = lens[work[sym]];
H A Dinftrees.h61 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
H A Dinflate.c295 while (sym < 144) state->lens[sym++] = 8;
296 while (sym < 256) state->lens[sym++] = 9;
297 while (sym < 280) state->lens[sym++] = 7;
298 while (sym < 288) state->lens[sym++] = 8;
302 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
306 while (sym < 32) state->lens[sym++] = 5;
309 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
956 state->lens[order[state->have++]] = (unsigned short)BITS(3);
960 state->lens[order[state->have++]] = 0;
964 ret = inflate_table(CODES, state->lens, 19, &(state->next),
[all …]
H A Dinflate.h121 unsigned short lens[320]; /* temporary storage for code lengths */ member