Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dbignum.cc511 int division_estimate = this_bigit / (other_bigit + 1); in DivideModuloIntBignum() local
512 result += division_estimate; in DivideModuloIntBignum()
513 SubtractTimes(other, division_estimate); in DivideModuloIntBignum()
515 if (other_bigit * (division_estimate + 1) > this_bigit) { in DivideModuloIntBignum()
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
Dbignum.cc535 int division_estimate = this_bigit / (other_bigit + 1); in DivideModuloIntBignum() local
536 result += division_estimate; in DivideModuloIntBignum()
537 SubtractTimes(other, division_estimate); in DivideModuloIntBignum()
539 if (other_bigit * (division_estimate + 1) > this_bigit) { in DivideModuloIntBignum()