Searched refs:lens (Results 1 - 5 of 5) sorted by relevance
/forgerock/web-agents-v4/zlib/ |
H A D | inftrees.h | 60 int ZLIB_INTERNAL inflate_table OF((codetype type, unsigned short FAR *lens,
|
H A D | inftrees.c | 22 The code lengths are lens[0..codes-1]. The result starts at *table, 24 lens shorts, which is used as a work area. type is the type of code 32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) 34 unsigned short FAR *lens; 77 code lengths are lens[0..codes-1]. Each length corresponds to the 89 lens[] are in the range 0..MAXBITS. The caller must assure this. 106 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ 110 count[lens[sym]]++; 147 if (lens[sym] != 0) work[offs[lens[sy [all...] |
H A D | infback.c | 97 while (sym < 144) state->lens[sym++] = 8; 98 while (sym < 256) state->lens[sym++] = 9; 99 while (sym < 280) state->lens[sym++] = 7; 100 while (sym < 288) state->lens[sym++] = 8; 104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 108 while (sym < 32) state->lens[sym++] = 5; 111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 380 state->lens[order[state->have++]] = (unsigned short)BITS(3); 384 state->lens[order[state->have++]] = 0; 388 ret = inflate_table(CODES, state->lens, 1 [all...] |
H A D | inflate.h | 114 unsigned have; /* number of code lengths in lens[] */ 116 unsigned short lens[320]; /* temporary storage for code lengths */ member in struct:inflate_state
|
H A D | inflate.c | 276 while (sym < 144) state->lens[sym++] = 8; 277 while (sym < 256) state->lens[sym++] = 9; 278 while (sym < 280) state->lens[sym++] = 7; 279 while (sym < 288) state->lens[sym++] = 8; 283 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work); 287 while (sym < 32) state->lens[sym++] = 5; 290 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work); 918 state->lens[order[state->have++]] = (unsigned short)BITS(3); 922 state->lens[order[state->have++]] = 0; 926 ret = inflate_table(CODES, state->lens, 1 [all...] |
Completed in 452 milliseconds