Home
last modified time | relevance | path

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

/external/zlib/src/contrib/infback9/
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 */
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; len++) {
136 for (len = 1; len < MAXBITS; len++)
/external/u-boot/lib/zlib/
Dinftrees.c11 #define MAXBITS 15 macro
54 unsigned short count[MAXBITS+1]; /* number of codes of each length */ in inflate_table()
55 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ in inflate_table()
103 for (len = 0; len <= MAXBITS; len++) in inflate_table()
110 for (max = MAXBITS; max >= 1; max--) in inflate_table()
122 for (min = 1; min <= MAXBITS; min++) in inflate_table()
128 for (len = 1; len <= MAXBITS; len++) { in inflate_table()
138 for (len = 1; len < MAXBITS; len++) in inflate_table()
/external/zlib/src/contrib/puff/
Dpuff.c91 #define MAXBITS 15 /* maximum bits in a code */ macro
244 for (len = 1; len <= MAXBITS; len++) { in decode()
295 left = (MAXBITS+1) - len; in decode()
345 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ in construct()
348 for (len = 0; len <= MAXBITS; len++) in construct()
357 for (len = 1; len <= MAXBITS; len++) { in construct()
366 for (len = 1; len < MAXBITS; len++) in construct()
539 static short lencnt[MAXBITS+1], lensym[FIXLCODES]; in fixed()
540 static short distcnt[MAXBITS+1], distsym[MAXDCODES]; in fixed()
671 short lencnt[MAXBITS+1], lensym[MAXLCODES]; /* lencode memory */ in dynamic()
[all …]
/external/python/cpython2/Modules/zlib/
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 */
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; len++)
/external/zlib/src/
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 */
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; len++)
/external/zlib/src/contrib/blast/
Dblast.c37 #define MAXBITS 13 /* maximum code length */ macro
161 left = (MAXBITS+1) - len; in decode()
196 short offs[MAXBITS+1]; /* offsets in symbol table for each length */ in construct()
212 for (len = 0; len <= MAXBITS; len++) in construct()
221 for (len = 1; len <= MAXBITS; len++) { in construct()
229 for (len = 1; len < MAXBITS; len++) in construct()
292 static short litcnt[MAXBITS+1], litsym[256]; /* litcode memory */ in decomp()
293 static short lencnt[MAXBITS+1], lensym[16]; /* lencode memory */ in decomp()
294 static short distcnt[MAXBITS+1], distsym[64]; /* distcode memory */ in decomp()