Lines Matching full:exponent
34 , exponent(0)
132 && (rule1->baseValue % util64_pow(rule1->radix, rule1->exponent)) == 0)
169 // both rules have the same radix and exponent (i.e., the
172 rule2->exponent = rule1->exponent;
211 * exponent according to the descriptor. (If the description doesn't
319 // accordingly, and recalculate the rule's exponent
326 exponent = expectedExponent();
331 // decrement the exponent (unless the exponent is already 0).
337 if (c == gGreaterThan && exponent > 0) {
338 --exponent;
457 * Sets the rule's base value, and causes the radix and exponent
469 // if this isn't a special rule, recalculate the radix and exponent
471 // else, it's cleaned up by the caller and the exponent is
476 exponent = expectedExponent();
483 sub1->setDivisor(radix, exponent, status);
486 sub2->setDivisor(radix, exponent, status);
489 // if this is a special rule, its radix and exponent are basically
493 exponent = 0;
498 * This calculates the rule's exponent based on its radix and base
506 // error, declare the exponent in these cases to be 0 (we also
559 && exponent == rhs.exponent
590 // slash, of course). Then calculate the expected exponent and if
591 // if isn't the same as the actual exponent, write an appropriate
599 int numCarets = expectedExponent() - exponent;
710 int64_t re = util64_pow(radix, exponent);