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

/external/v8/src/
H A Ddiy-fp.h35 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
38 // DiyFp are not designed to contain special doubles (NaN and Infinity).
39 class DiyFp { class in namespace:v8::internal
43 DiyFp() : f_(0), e_(0) {} function in class:v8::internal::DiyFp
44 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} function in class:v8::internal::DiyFp
50 void Subtract(const DiyFp& other) {
59 static DiyFp Minus(const DiyFp& a, const DiyFp& b) {
60 DiyFp resul
[all...]

Completed in 48 milliseconds