Lines Matching defs:mult
7200 * @mult: the multiple expression
7212 xmlExpNodePtr *mult, xmlExpNodePtr *remain) {
7216 if (mult != NULL) *mult = NULL;
7242 if (mult != NULL)
7243 *mult = tmp;
7473 int mult;
7478 mult = xmlExpDivide(ctxt, sub->exp_left, exp->exp_left,
7480 if (mult <= 0) {
7489 if (exp->exp_min <= sub->exp_min * mult)
7492 min = exp->exp_min - sub->exp_min * mult;
7503 printf("Infinite loop consume mult finite loop\n");
7505 if (exp->exp_min > sub->exp_min * mult) {
7507 min = exp->exp_min - sub->exp_min * mult;
7513 if (exp->exp_max < sub->exp_max * mult) {
7515 printf("loops max mult mismatch => forbidden\n");
7520 if (sub->exp_max * mult > exp->exp_min)
7523 min = exp->exp_min - sub->exp_max * mult;
7524 max = exp->exp_max - sub->exp_max * mult;