Searched defs:diyfp (Results 1 – 1 of 1) sorted by relevance
16501 struct diyfp // f * 2^e struct16503 static constexpr int kPrecision = 64; // = q16505 std::uint64_t f = 0;16506 int e = 0;16508 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} in diyfp() argument16514 static diyfp sub(const diyfp& x, const diyfp& y) noexcept in sub()16526 static diyfp mul(const diyfp& x, const diyfp& y) noexcept in mul()16591 static diyfp normalize(diyfp x) noexcept in normalize()16608 static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept in normalize_to()