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

/darwin-on-arm/xnu/libkern/zlib/
H A Dinftrees.c36 #define MAXBITS 15 macro
85 unsigned short count[MAXBITS+1]; /* number of codes of each length */
86 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */
116 lens[] are in the range 0..MAXBITS. The caller must assure this.
117 1..MAXBITS is interpreted as that code length. zero means that that
133 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
134 for (len = 0; len <= MAXBITS; len++)
141 for (max = MAXBITS; max >= 1; max--)
153 for (min = 1; min <= MAXBITS; min++)
159 for (len = 1; len <= MAXBITS; le
[all...]

Completed in 16 milliseconds