Searched refs:division_estimate (Results 1 – 1 of 1) sorted by relevance
562 const int division_estimate = this_bigit / (other_bigit + 1); in DivideModuloIntBignum() local563 DOUBLE_CONVERSION_ASSERT(division_estimate < 0x10000); in DivideModuloIntBignum()564 result += static_cast<uint16_t>(division_estimate); in DivideModuloIntBignum()565 SubtractTimes(other, division_estimate); in DivideModuloIntBignum()567 if (other_bigit * (division_estimate + 1) > this_bigit) { in DivideModuloIntBignum()