Home | History | Annotate | Download | only in libxml2

Lines Matching refs:exp_max

6371 #define exp_max field.count.f_max
6632 if ((insert->exp_min == min) && (insert->exp_max == max) &&
6658 entry->exp_max = max;
7063 if (exp->exp_max == 0)
7074 if (exp->exp_max == 1)
7076 if (exp->exp_max < 0) /* unbounded */
7079 max = exp->exp_max - 1;
7318 (sub->exp_max == 1) &&
7378 if (sub->exp_max < 0)
7381 max = sub->exp_max -1;
7444 if (sub->exp_max == -1) {
7446 if (exp->exp_max == -1) {
7459 if (exp->exp_max == -1) {
7471 if (exp->exp_max < sub->exp_max * mult) {
7478 if (sub->exp_max * mult > exp->exp_min)
7481 min = exp->exp_min - sub->exp_max * mult;
7482 max = exp->exp_max - sub->exp_max * mult;
7495 } else if (sub->exp_max == -1) {
7496 if (exp->exp_max == -1) {
7521 if (exp->exp_max == -1) {
7533 if (exp->exp_max < sub->exp_max) {
7540 if (sub->exp_max > exp->exp_min)
7543 min = exp->exp_min - sub->exp_max;
7544 max = exp->exp_max - sub->exp_max;
7573 if (exp->exp_max < 0)
7576 max = exp->exp_max - 1;
7996 if ((expr->exp_min == 0) && (expr->exp_max == 1)) {
7999 } else if ((expr->exp_min == 0) && (expr->exp_max == -1)) {
8002 } else if ((expr->exp_min == 1) && (expr->exp_max == -1)) {
8005 } else if (expr->exp_max == expr->exp_min) {
8007 } else if (expr->exp_max < 0) {
8010 snprintf(rep, 39, "{%d,%d}", expr->exp_min, expr->exp_max);