Searched refs:w_error (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/v8/src/ |
D | fast-dtoa.cc | 498 uint64_t w_error = 1; in DigitGenCounted() local 536 static_cast<uint64_t>(divisor) << -one.e(), w_error, in DigitGenCounted() 549 while (requested_digits > 0 && fractionals > w_error) { in DigitGenCounted() 551 w_error *= 10; in DigitGenCounted() 561 return RoundWeedCounted(buffer, *length, fractionals, one.f(), w_error, in DigitGenCounted()
|
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
D | fast-dtoa.cc | 522 uint64_t w_error = 1; in DigitGenCounted() local 560 static_cast<uint64_t>(divisor) << -one.e(), w_error, in DigitGenCounted() 573 while (requested_digits > 0 && fractionals > w_error) { in DigitGenCounted() 575 w_error *= 10; in DigitGenCounted() 585 return RoundWeedCounted(buffer, *length, fractionals, one.f(), w_error, in DigitGenCounted()
|