Home | History | Annotate | Download | only in libxml2

Lines Matching refs:c_max

6355     int c_max;		/* the maximum length it can consume */
6655 entry->c_max = 1;
6663 entry->c_max = -1;
6665 entry->c_max = max * entry->exp_left->c_max;
6672 if ((entry->exp_left->c_max == -1) ||
6673 (entry->exp_right->c_max == -1))
6674 entry->c_max = -1;
6675 else if (entry->exp_left->c_max > entry->exp_right->c_max)
6676 entry->c_max = entry->exp_left->c_max;
6678 entry->c_max = entry->exp_right->c_max;
6682 if ((entry->exp_left->c_max == -1) ||
6683 (entry->exp_right->c_max == -1))
6684 entry->c_max = -1;
6686 entry->c_max = entry->exp_left->c_max + entry->exp_right->c_max;
7138 if (sub->c_max == -1) {
7139 if (exp->c_max != -1)
7141 } else if ((exp->c_max >= 0) && (exp->c_max < sub->c_max)) {
7176 if (exp->c_max == -1) return(0);
7179 for (i = 1;i <= exp->c_max;i++) {
7239 if ((exp == sub) && (exp->c_max >= 0)) {
8048 return(expr->c_max);