Searched defs:ExpBase (Results 1 – 1 of 1) sorted by relevance
26 struct ExpBase { struct28 static constexpr int MID_BITS = 5;29 static constexpr int MID_MASK = (1 << MID_BITS) - 1;31 static constexpr double LOG2_B = 0x1.71547652b82fep+0 * (1 << MID_BITS);33 static constexpr double M_LOGB_2_HI = -0x1.62e42fefa0000p-1 / (1 << MID_BITS);34 static constexpr double M_LOGB_2_LO =39 static constexpr int64_t EXP_2_MID[1 << MID_BITS] = {66 double c1 = multiply_add(dx, ExpBase::COEFFS[1], ExpBase::COEFFS[0]); in powb_lo() argument