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

/haiku-fatelf/src/bin/
H A Drenice.c47 //#define BMAX B_NORMAL_PRIORITY
48 #define BMAX 1 macro
55 return NZERO + ((BZERO - prio) * (NZERO - 1)) / (BZERO - BMAX);
62 return BZERO - ((prio - NZERO) * (BZERO - BMAX)) / (NZERO-1);
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dinftrees.c92 /* If BMAX needs to be larger than 16, then h and x[] should be uLong. */
93 #define BMAX 15 /* maximum bit length of any code */ macro
96 uIntf *b, /* code lengths in bits (all assumed <= BMAX) */
113 uInt c[BMAX+1]; /* bit length count table */
125 inflate_huft *u[BMAX]; /* table stack */
127 uInt x[BMAX+1]; /* bit offsets, then code stack */
138 C4 /* clear c[]--assume BMAX+1 is 16 */
141 c[*p++]++; /* assume all entries <= BMAX */
153 for (j = 1; j <= BMAX; j++)
159 for (i = BMAX;
[all...]
/haiku-fatelf/src/bin/gzip/
H A Dinflate.c263 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
264 #define BMAX 16 /* maximum bit length of any code (16 for explode) */ macro
272 unsigned *b; /* code lengths in bits (all assumed <= BMAX) */
286 unsigned c[BMAX+1]; /* bit length count table */
297 struct huft *u[BMAX]; /* table stack */
300 unsigned x[BMAX+1]; /* bit offsets, then code stack */
312 c[*p]++; /* assume all entries <= BMAX */
325 for (j = 1; j <= BMAX; j++)
331 for (i = BMAX; i; i--)
/haiku-fatelf/src/bin/unzip/
H A Dinflate.c41 changed BMAX to 16 for explode. Removed
1270 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
1271 #define BMAX 16 /* maximum bit length of any code (16 for explode) */ macro
1277 ZCONST unsigned *b; /* code lengths in bits (all assumed <= BMAX) */
1294 unsigned c[BMAX+1]; /* bit length count table */
1302 int lx[BMAX+1]; /* memory for l[-1..BMAX-1] */
1307 struct huft *u[BMAX]; /* table stack */
1310 unsigned x[BMAX+1]; /* bit offsets, then code stack */
1317 el = n > 256 ? b[256] : BMAX; /* se
[all...]
H A Dinflatef.c1028 /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
1029 #define BMAX 16 /* maximum bit length of any code (16 for explode) */ macro
1035 ZCONST unsigned *b; /* code lengths in bits (all assumed <= BMAX) */
1052 unsigned c[BMAX+1]; /* bit length count table */
1060 int lx[BMAX+1]; /* memory for l[-1..BMAX-1] */
1065 struct huft *u[BMAX]; /* table stack */
1068 unsigned x[BMAX+1]; /* bit offsets, then code stack */
1075 el = n > 256 ? b[256] : BMAX; /* set length of EOB code, if any */
1079 c[*p]++; p++; /* assume all entries <= BMAX */
[all...]

Completed in 54 milliseconds