Home
last modified time | relevance | path

Searched defs:diyfp (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/ublksrv/include/nlohmann/
H A Djson.hpp16501 struct diyfp // f * 2^e struct
16503 static constexpr int kPrecision = 64; // = q
16505 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() argument
16514 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()