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

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddiy-fp.h38 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
41 // DiyFp are not designed to contain special doubles (NaN and Infinity).
42 class DiyFp { class in namespace:WTF::double_conversion
46 DiyFp() : f_(0), e_(0) {} function in class:WTF::double_conversion::DiyFp
47 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} function in class:WTF::double_conversion::DiyFp
53 void Subtract(const DiyFp& other) {
62 static DiyFp Minus(const DiyFp& a, const DiyFp& b) {
63 DiyFp resul
[all...]
/external/chromium_org/v8/src/
H A Ddiy-fp.h12 // with a uint64 significand and an int exponent. Normalized DiyFp numbers will
15 // DiyFp are not designed to contain special doubles (NaN and Infinity).
16 class DiyFp { class in namespace:v8::internal
20 DiyFp() : f_(0), e_(0) {} function in class:v8::internal::DiyFp
21 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} function in class:v8::internal::DiyFp
27 void Subtract(const DiyFp& other) {
36 static DiyFp Minus(const DiyFp& a, const DiyFp& b) {
37 DiyFp resul
[all...]

Completed in 162 milliseconds