Lines Matching full:mult
7227 * @mult: the multiple expression
7239 xmlExpNodePtr *mult, xmlExpNodePtr *remain) {
7243 if (mult != NULL) *mult = NULL;
7269 if (mult != NULL)
7270 *mult = tmp;
7500 int mult;
7505 mult = xmlExpDivide(ctxt, sub->exp_left, exp->exp_left,
7507 if (mult <= 0) {
7516 if (exp->exp_min <= sub->exp_min * mult)
7519 min = exp->exp_min - sub->exp_min * mult;
7530 printf("Infinite loop consume mult finite loop\n");
7532 if (exp->exp_min > sub->exp_min * mult) {
7534 min = exp->exp_min - sub->exp_min * mult;
7540 if (exp->exp_max < sub->exp_max * mult) {
7542 printf("loops max mult mismatch => forbidden\n");
7547 if (sub->exp_max * mult > exp->exp_min)
7550 min = exp->exp_min - sub->exp_max * mult;
7551 max = exp->exp_max - sub->exp_max * mult;