Searched refs:lens (Results 1 – 4 of 4) sorted by relevance
/trusted-firmware-a-3.4.0/lib/zlib/ |
D | inftrees.c | 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument 34 unsigned short FAR *lens; 110 count[lens[sym]]++; 147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; 254 len = lens[work[sym]];
|
D | inftrees.h | 60 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
|
D | inflate.h | 119 unsigned short lens[320]; /* temporary storage for code lengths */ member
|
D | inflate.c | 293 while (sym < 144) state->lens[sym++] = 8; 294 while (sym < 256) state->lens[sym++] = 9; 295 while (sym < 280) state->lens[sym++] = 7; 296 while (sym < 288) state->lens[sym++] = 8; 300 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 304 while (sym < 32) state->lens[sym++] = 5; 307 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 941 state->lens[order[state->have++]] = (unsigned short)BITS(3); 945 state->lens[order[state->have++]] = 0; 949 ret = inflate_table(CODES, state->lens, 19, &(state->next), [all …]
|