Searched refs:lens (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.h77 extern int inflate_table OF((codetype type, unsigned short FAR *lens,
H A Dinflate.h134 unsigned have; /* number of code lengths in lens[] */
136 unsigned short lens[320]; /* temporary storage for code lengths */ member in struct:inflate_state
H A Dinftrees.c46 The code lengths are lens[0..codes-1]. The result starts at *table,
48 lens shorts, which is used as a work area. type is the type of code
56 int inflate_table(type, lens, codes, table, bits, work)
58 unsigned short FAR *lens;
101 code lengths are lens[0..codes-1]. Each length corresponds to the
113 lens[] are in the range 0..MAXBITS. The caller must assure this.
130 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
134 count[lens[sym]]++;
171 if (lens[sym] != 0) work[offs[lens[sy
[all...]
H A Dinfback.c112 while (sym < 144) state->lens[sym++] = 8;
113 while (sym < 256) state->lens[sym++] = 9;
114 while (sym < 280) state->lens[sym++] = 7;
115 while (sym < 288) state->lens[sym++] = 8;
119 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
123 while (sym < 32) state->lens[sym++] = 5;
126 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
395 state->lens[order[state->have++]] = (unsigned short)BITS(3);
399 state->lens[order[state->have++]] = 0;
403 ret = inflate_table(CODES, state->lens, 1
[all...]
H A Dinflate.c244 while (sym < 144) state->lens[sym++] = 8;
245 while (sym < 256) state->lens[sym++] = 9;
246 while (sym < 280) state->lens[sym++] = 7;
247 while (sym < 288) state->lens[sym++] = 8;
251 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
255 while (sym < 32) state->lens[sym++] = 5;
258 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
882 state->lens[order[state->have++]] = (unsigned short)BITS(3);
886 state->lens[order[state->have++]] = 0;
890 ret = inflate_table(CODES, state->lens, 1
[all...]

Completed in 98 milliseconds