Lines Matching refs:DiyFp
55 class DiyFp {
59 DiyFp() : f_(0), e_(0) {} in DiyFp() function
60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() function
66 void Subtract(const DiyFp& other) { in Subtract()
75 static DiyFp Minus(const DiyFp& a, const DiyFp& b) { in Minus()
76 DiyFp result = a; in Minus()
82 void Multiply(const DiyFp& other) { in Multiply()
104 static DiyFp Times(const DiyFp& a, const DiyFp& b) { in Times()
105 DiyFp result = a; in Times()
130 static DiyFp Normalize(const DiyFp& a) { in Normalize()
131 DiyFp result = a; in Normalize()