Searched defs:diyfp (Results 1 – 2 of 2) sorted by relevance
| /external/icu/icu4c/source/tools/toolutil/ |
| D | json-json.hpp | 16992 struct diyfp // f * 2^e struct 16994 static constexpr int kPrecision = 64; // = q 16996 std::uint64_t f = 0; 16997 int e = 0; 16999 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} in diyfp() function 17005 static diyfp sub(const diyfp& x, const diyfp& y) noexcept in sub() 17017 static diyfp mul(const diyfp& x, const diyfp& y) noexcept in mul() 17082 static diyfp normalize(diyfp x) noexcept in normalize() 17099 static diyfp normalize_to(const diyfp& x, const int target_exponent) noexcept in normalize_to()
|
| /external/ublksrv/include/nlohmann/ |
| D | json.hpp | 16501 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()
|