Lines Matching refs:c_max
6451 int c_max; /* the maximum length it can consume */ member
6751 entry->c_max = 1; in xmlExpHashGetEntry()
6759 entry->c_max = -1; in xmlExpHashGetEntry()
6761 entry->c_max = max * entry->exp_left->c_max; in xmlExpHashGetEntry()
6768 if ((entry->exp_left->c_max == -1) || in xmlExpHashGetEntry()
6769 (entry->exp_right->c_max == -1)) in xmlExpHashGetEntry()
6770 entry->c_max = -1; in xmlExpHashGetEntry()
6771 else if (entry->exp_left->c_max > entry->exp_right->c_max) in xmlExpHashGetEntry()
6772 entry->c_max = entry->exp_left->c_max; in xmlExpHashGetEntry()
6774 entry->c_max = entry->exp_right->c_max; in xmlExpHashGetEntry()
6778 if ((entry->exp_left->c_max == -1) || in xmlExpHashGetEntry()
6779 (entry->exp_right->c_max == -1)) in xmlExpHashGetEntry()
6780 entry->c_max = -1; in xmlExpHashGetEntry()
6782 entry->c_max = entry->exp_left->c_max + entry->exp_right->c_max; in xmlExpHashGetEntry()
7234 if (sub->c_max == -1) { in xmlExpCheckCard()
7235 if (exp->c_max != -1) in xmlExpCheckCard()
7237 } else if ((exp->c_max >= 0) && (exp->c_max < sub->c_max)) { in xmlExpCheckCard()
7272 if (exp->c_max == -1) return(0); in xmlExpDivide()
7275 for (i = 1;i <= exp->c_max;i++) { in xmlExpDivide()
7335 if ((exp == sub) && (exp->c_max >= 0)) { in xmlExpExpDeriveInt()
8144 return(expr->c_max); in xmlExpMaxToken()