OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:this_bigit
(Results
1 - 2
of
2
) sorted by null
/external/icu/icu4c/source/i18n/
double-conversion-bignum.cpp
534
Chunk
this_bigit
= bigits_[used_digits_ - 1];
539
int quotient =
this_bigit
/ other_bigit;
540
bigits_[used_digits_ - 1] =
this_bigit
- other_bigit * quotient;
547
int division_estimate =
this_bigit
/ (other_bigit + 1);
552
if (other_bigit * (division_estimate + 1) >
this_bigit
) {
/external/v8/src/
bignum.cc
499
Chunk
this_bigit
= bigits_[used_digits_ - 1];
local
504
int quotient =
this_bigit
/ other_bigit;
505
bigits_[used_digits_ - 1] =
this_bigit
- other_bigit * quotient;
511
int division_estimate =
this_bigit
/ (other_bigit + 1);
515
if (other_bigit * (division_estimate + 1) >
this_bigit
) {
Completed in 521 milliseconds