Home
last modified time | relevance | path

Searched refs:other_bigit (Results 1 – 1 of 1) sorted by relevance

/external/icu/icu4c/source/i18n/
Ddouble-conversion-bignum.cpp550 const Chunk other_bigit = other.RawBigit(other.used_bigits_ - 1); in DivideModuloIntBignum() local
554 int quotient = this_bigit / other_bigit; in DivideModuloIntBignum()
555 RawBigit(used_bigits_ - 1) = this_bigit - other_bigit * quotient; in DivideModuloIntBignum()
562 const int division_estimate = this_bigit / (other_bigit + 1); in DivideModuloIntBignum()
567 if (other_bigit * (division_estimate + 1) > this_bigit) { in DivideModuloIntBignum()