Searched refs:too_high (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/ |
D | fast-dtoa.cc | 384 DiyFp too_high = DiyFp(high.f() + unit, high.e()); in DigitGen() local 387 DiyFp unsafe_interval = DiyFp::Minus(too_high, too_low); in DigitGen() 397 uint32_t integrals = static_cast<uint32_t>(too_high.f() >> -one.e()); in DigitGen() 399 uint64_t fractionals = too_high.f() & (one.f() - 1); in DigitGen() 425 return RoundWeed(buffer, *length, DiyFp::Minus(too_high, w).f(), in DigitGen() 452 return RoundWeed(buffer, *length, DiyFp::Minus(too_high, w).f() * unit, in DigitGen()
|