Searched refs:lens (Results 1 – 5 of 5) sorted by relevance
| /xnu-11417.121.6/libkern/zlib/ |
| H A D | infback.c | 115 while (sym < 144) state->lens[sym++] = 8; in fixedtables() 116 while (sym < 256) state->lens[sym++] = 9; in fixedtables() 117 while (sym < 280) state->lens[sym++] = 7; in fixedtables() 118 while (sym < 288) state->lens[sym++] = 8; in fixedtables() 122 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables() 126 while (sym < 32) state->lens[sym++] = 5; in fixedtables() 129 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables() 395 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflateBack() 399 state->lens[order[state->have++]] = 0; in inflateBack() 403 ret = inflate_table(CODES, state->lens, 19, &(state->next), in inflateBack() [all …]
|
| H A D | inftrees.c | 60 inflate_table(codetype type, unsigned short FAR *lens, unsigned codes, in inflate_table() argument 134 count[lens[sym]]++; in inflate_table() 171 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym; in inflate_table() 278 len = lens[work[sym]]; in inflate_table()
|
| H A D | inflate.c | 244 while (sym < 144) state->lens[sym++] = 8; in fixedtables() 245 while (sym < 256) state->lens[sym++] = 9; in fixedtables() 246 while (sym < 280) state->lens[sym++] = 7; in fixedtables() 247 while (sym < 288) state->lens[sym++] = 8; in fixedtables() 251 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); in fixedtables() 255 while (sym < 32) state->lens[sym++] = 5; in fixedtables() 258 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); in fixedtables() 895 state->lens[order[state->have++]] = (unsigned short)BITS(3); in inflate() 899 state->lens[order[state->have++]] = 0; in inflate() 903 ret = inflate_table(CODES, state->lens, 19, &(state->next), in inflate() [all …]
|
| H A D | inftrees.h | 80 extern int inflate_table OF((codetype type, unsigned short FAR *lens,
|
| H A D | inflate.h | 139 unsigned short lens[320]; /* temporary storage for code lengths */ member
|