Lines Matching defs:max
511 count_bit_noESC_from2(const int *ix, const int *end, int max, unsigned int *s)
513 int t1 = huf_tbl_noESC[max - 1];
539 count_bit_noESC_from3(const int *ix, const int *end, int max, unsigned int * s)
541 int t1 = huf_tbl_noESC[max - 1];
588 static int count_bit_null(const int* ix, const int* end, int max, unsigned int* s)
592 (void) max;
597 typedef int (*count_fnc)(const int* ix, const int* end, int max, unsigned int* s);
622 unsigned int max;
624 max = ix_max(ix, end);
626 if (max <= 15) {
627 return count_fncs[max](ix, end, max, s);
630 if (max > IXMAX_VAL) {
634 max -= 15u;
636 if (ht[choice2].linmax >= max) {
642 if (ht[choice].linmax >= max) {