Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm-libc/src/math/generic/
H A Dexplogxf.h25 struct ExpBase { struct
27 static constexpr int MID_BITS = 5;
28 static constexpr int MID_MASK = (1 << MID_BITS) - 1;
30 static constexpr double LOG2_B = 0x1.71547652b82fep+0 * (1 << MID_BITS);
32 static constexpr double M_LOGB_2_HI = -0x1.62e42fefa0000p-1 / (1 << MID_BITS);
33 static constexpr double M_LOGB_2_LO =
38 static constexpr int64_t EXP_2_MID[1 << MID_BITS] = {
65 double c1 = multiply_add(dx, ExpBase::COEFFS[1], ExpBase::COEFFS[0]); in powb_lo() argument