HomeSort by relevance Sort by last modified time
    Searched refs:division_estimate (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4c/source/i18n/
double-conversion-bignum.cpp 547 int division_estimate = this_bigit / (other_bigit + 1);
548 ASSERT(division_estimate < 0x10000);
549 result += static_cast<uint16_t>(division_estimate);
550 SubtractTimes(other, division_estimate);
552 if (other_bigit * (division_estimate + 1) > this_bigit) {
  /external/v8/src/
bignum.cc 511 int division_estimate = this_bigit / (other_bigit + 1); local
512 result += division_estimate;
513 SubtractTimes(other, division_estimate);
515 if (other_bigit * (division_estimate + 1) > this_bigit) {

Completed in 62 milliseconds