Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/base/
Ddtoa_helper.h168 struct DiyFp { struct
169 DiyFp() : f(), e() {} in DiyFp() argument
170 DiyFp(uint64_t fp, int exp) : f(fp), e(exp) {} in DiyFp() function
172 explicit DiyFp(double d) in DiyFp() argument
208 …return DiyFp(ac + (ad >> kInt32Bits) + (bc >> kInt32Bits) + (tmp >> kInt32Bits), e + rhs.e + kInt6… argument
211 DiyFp Normalize() const in Normalize() argument
223 DiyFp NormalizeBoundary() const in NormalizeBoundary() argument
235 void NormalizedBoundaries(DiyFp *minus, DiyFp *plus) const in NormalizedBoundaries() argument
265 static DiyFp GetCachedPower(int e, int *K) in GetCachedPower() argument
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
Ddtoa_helper.h83 DiyFp() : f_(), e_() {} in DiyFp() function
84 DiyFp(uint64_t fp, int exp) : f_(fp), e_(exp) {} in DiyFp() function
86 explicit DiyFp(double d) in DiyFp() function