Searched defs:DiyFp (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/
H A Ddiy-fp.h16 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
19 // DiyFp are not designed to contain special doubles (NaN and Infinity).
20 class DiyFp { class in namespace:v8::internal
24 DiyFp() : f_(0), e_(0) {} function in class:v8::internal::DiyFp
25 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} function in class:v8::internal::DiyFp
31 void Subtract(const DiyFp& other) {
40 static DiyFp Minus(const DiyFp& a, const DiyFp& b) {
41 DiyFp resul
[all...]

Completed in 161 milliseconds