Home
last modified time | relevance | path

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

/frameworks/native/libs/math/include/math/
Dhalf.h67 constexpr unsigned int getE() const noexcept { return (bits >> 10u) & 0x1Fu; } in getE() function
81 constexpr unsigned int getE() const noexcept { return (bits >> 23u) & 0xFFu; } in getE() function
91 unsigned int getExponent() const noexcept { return mBits.getE(); } in getExponent()
108 if (UNLIKELY(in.getE() == 0xFF)) { // inf or nan in ftoh()
112 int e = static_cast<int>(in.getE()) - 127 + 15; in ftoh()
135 if (UNLIKELY(in.getE() == 0x1F)) { // inf or nan in htof()
139 if (in.getE() == 0) { in htof()
145 int e = static_cast<int>(in.getE()) - 15 + 127; in htof()