Lines Matching defs:limit
83 /* We have an extra slot at the end of limit[] for a sentinal value. */
84 int limit[MAX_HUFCODE_BITS+1];
160 int *limit = NULL;
281 /* Calculate permute[], base[], and limit[] tables from
290 * limit[] indicates the largest numerical value a
293 * code with a value > limit[length] needs another
300 adjust the base and limit array pointers so we're
304 limit = hufGroup->limit-1;
306 * temp[] and limit[]. */
309 temp[i] = limit[i] = 0;
317 /* Calculate limit[] (the largest symbol-coding value
318 *at each bit length, which is (previous limit <<
320 *symbols to ignore at each bit length, which is limit
334 affect the value > limit[length]
336 limit[i] = (pp << (maxLen - i)) - 1;
340 limit[maxLen+1] = INT_MAX; /* Sentinal value for
342 limit[maxLen] = pp+temp[maxLen]-1;
366 limit = hufGroup->limit-1;
396 while (j > limit[i])