Searched refs:MAXBITS (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/zlib-1.2.6/
H A Dinftrees.c9 #define MAXBITS 15 macro
58 unsigned short count[MAXBITS+1]; /* number of codes of each length */
59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */
89 lens[] are in the range 0..MAXBITS. The caller must assure this.
90 1..MAXBITS is interpreted as that code length. zero means that that
106 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
107 for (len = 0; len <= MAXBITS; len++)
114 for (max = MAXBITS; max >= 1; max--)
132 for (len = 1; len <= MAXBITS; len++) {
142 for (len = 1; len < MAXBITS; le
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/blast/
H A Dblast.c31 #define MAXBITS 13 /* maximum code length */ macro
91 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
106 * then -9 is returned after reading MAXBITS bits.
155 left = (MAXBITS+1) - len;
190 short offs[MAXBITS+1]; /* offsets in symbol table for each length */
206 for (len = 0; len <= MAXBITS; len++)
215 for (len = 1; len <= MAXBITS; len++) {
223 for (len = 1; len < MAXBITS; len++)
286 static short litcnt[MAXBITS+1], litsym[256]; /* litcode memory */
287 static short lencnt[MAXBITS
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/puff/
H A Dpuff.c90 #define MAXBITS 15 /* maximum bits in a code */ macro
199 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
214 * then -10 is returned after reading MAXBITS bits.
243 for (len = 1; len <= MAXBITS; len++) {
294 left = (MAXBITS+1) - len;
326 * Assumption: for all i in 0..n-1, 0 <= length[i] <= MAXBITS
344 short offs[MAXBITS+1]; /* offsets in symbol table for each length */
347 for (len = 0; len <= MAXBITS; len++)
356 for (len = 1; len <= MAXBITS; len++) {
365 for (len = 1; len < MAXBITS; le
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinftree9.c9 #define MAXBITS 15 macro
58 unsigned short count[MAXBITS+1]; /* number of codes of each length */
59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */
91 lens[] are in the range 0..MAXBITS. The caller must assure this.
92 1..MAXBITS is interpreted as that code length. zero means that that
108 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
109 for (len = 0; len <= MAXBITS; len++)
116 for (max = MAXBITS; max >= 1; max--)
120 for (min = 1; min <= MAXBITS; min++)
126 for (len = 1; len <= MAXBITS; le
[all...]

Completed in 60 milliseconds