Eclipse SUMO - Simulation of Urban MObility
|
Public Member Functions | |
constexpr | diyfp (std::uint64_t f_, int e_) noexcept |
Static Public Member Functions | |
static diyfp | mul (const diyfp &x, const diyfp &y) noexcept |
returns x * y | |
static diyfp | normalize (diyfp x) noexcept |
normalize x such that the significand is >= 2^(q-1) | |
static diyfp | normalize_to (const diyfp &x, const int target_exponent) noexcept |
normalize x such that the result has the exponent E | |
static diyfp | sub (const diyfp &x, const diyfp &y) noexcept |
returns x - y | |
Data Fields | |
int | e = 0 |
std::uint64_t | f = 0 |
Static Public Attributes | |
static constexpr int | kPrecision = 64 |
|
inlineconstexprnoexcept |
|
inlinestaticnoexcept |
returns x * y
Definition at line 15017 of file json.hpp.
References f, and kPrecision.
Referenced by nlohmann::detail::dtoa_impl::grisu2().
normalize x such that the significand is >= 2^(q-1)
Definition at line 15082 of file json.hpp.
References JSON_ASSERT.
Referenced by nlohmann::detail::dtoa_impl::compute_boundaries().
|
inlinestaticnoexcept |
normalize x such that the result has the exponent E
Definition at line 15099 of file json.hpp.
References e, and JSON_ASSERT.
Referenced by nlohmann::detail::dtoa_impl::compute_boundaries().
|
inlinestaticnoexcept |
returns x - y
Definition at line 15005 of file json.hpp.
References JSON_ASSERT.
Referenced by nlohmann::detail::dtoa_impl::grisu2_digit_gen().
int nlohmann::detail::dtoa_impl::diyfp::e = 0 |
Definition at line 14997 of file json.hpp.
Referenced by nlohmann::detail::dtoa_impl::compute_boundaries(), nlohmann::detail::dtoa_impl::grisu2(), nlohmann::detail::dtoa_impl::grisu2_digit_gen(), and normalize_to().
std::uint64_t nlohmann::detail::dtoa_impl::diyfp::f = 0 |
Definition at line 14996 of file json.hpp.
Referenced by nlohmann::detail::dtoa_impl::compute_boundaries(), nlohmann::detail::dtoa_impl::grisu2(), nlohmann::detail::dtoa_impl::grisu2_digit_gen(), and mul().
|
staticconstexpr |
Definition at line 14994 of file json.hpp.
Referenced by nlohmann::detail::dtoa_impl::grisu2(), and mul().