Home
last modified time | relevance | path

Searched refs:IsNormal (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/src/libs/thorvg/rapidjson/internal/
Dieee754.h44 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; } in IsNormal() function
47 …uint64_t IntegerSignificand() const { return IsNormal() ? Significand() | kHiddenBit : Significand… in IntegerSignificand()
48 …int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandS… in IntegerExponent()