Lines Matching refs:DiyFp
20 class DiyFp {
24 DiyFp() : f_(0), e_(0) {} in DiyFp() function
25 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} in DiyFp() function
31 void Subtract(const DiyFp& other) { in Subtract()
40 static DiyFp Minus(const DiyFp& a, const DiyFp& b) { in Minus()
41 DiyFp result = a; in Minus()
48 void Multiply(const DiyFp& other);
51 static DiyFp Times(const DiyFp& a, const DiyFp& b) { in Times()
52 DiyFp result = a; in Times()
77 static DiyFp Normalize(const DiyFp& a) { in Normalize()
78 DiyFp result = a; in Normalize()