Lines Matching refs:exp_max

6460 #define exp_max field.count.f_max  macro
6721 if ((insert->exp_min == min) && (insert->exp_max == max) && in xmlExpHashGetEntry()
6747 entry->exp_max = max; in xmlExpHashGetEntry()
7152 if (exp->exp_max == 0) in xmlExpStringDeriveInt()
7163 if (exp->exp_max == 1) in xmlExpStringDeriveInt()
7165 if (exp->exp_max < 0) /* unbounded */ in xmlExpStringDeriveInt()
7168 max = exp->exp_max - 1; in xmlExpStringDeriveInt()
7407 (sub->exp_max == 1) && in xmlExpExpDeriveInt()
7467 if (sub->exp_max < 0) in xmlExpExpDeriveInt()
7470 max = sub->exp_max -1; in xmlExpExpDeriveInt()
7533 if (sub->exp_max == -1) { in xmlExpExpDeriveInt()
7535 if (exp->exp_max == -1) { in xmlExpExpDeriveInt()
7548 if (exp->exp_max == -1) { in xmlExpExpDeriveInt()
7560 if (exp->exp_max < sub->exp_max * mult) { in xmlExpExpDeriveInt()
7567 if (sub->exp_max * mult > exp->exp_min) in xmlExpExpDeriveInt()
7570 min = exp->exp_min - sub->exp_max * mult; in xmlExpExpDeriveInt()
7571 max = exp->exp_max - sub->exp_max * mult; in xmlExpExpDeriveInt()
7584 } else if (sub->exp_max == -1) { in xmlExpExpDeriveInt()
7585 if (exp->exp_max == -1) { in xmlExpExpDeriveInt()
7610 if (exp->exp_max == -1) { in xmlExpExpDeriveInt()
7622 if (exp->exp_max < sub->exp_max) { in xmlExpExpDeriveInt()
7629 if (sub->exp_max > exp->exp_min) in xmlExpExpDeriveInt()
7632 min = exp->exp_min - sub->exp_max; in xmlExpExpDeriveInt()
7633 max = exp->exp_max - sub->exp_max; in xmlExpExpDeriveInt()
7662 if (exp->exp_max < 0) in xmlExpExpDeriveInt()
7665 max = exp->exp_max - 1; in xmlExpExpDeriveInt()
8085 if ((expr->exp_min == 0) && (expr->exp_max == 1)) { in xmlExpDumpInt()
8088 } else if ((expr->exp_min == 0) && (expr->exp_max == -1)) { in xmlExpDumpInt()
8091 } else if ((expr->exp_min == 1) && (expr->exp_max == -1)) { in xmlExpDumpInt()
8094 } else if (expr->exp_max == expr->exp_min) { in xmlExpDumpInt()
8096 } else if (expr->exp_max < 0) { in xmlExpDumpInt()
8099 snprintf(rep, 39, "{%d,%d}", expr->exp_min, expr->exp_max); in xmlExpDumpInt()