Lines Matching defs:FPBits_t
738 using FPBits_t = typename fputil::FPBits<double>;
740 FPBits_t xbits(x);
743 int x_e = -FPBits_t::EXP_BIAS;
745 if (LIBC_UNLIKELY(xbits == FPBits_t::one())) {
750 if (LIBC_UNLIKELY(xbits.uintval() < FPBits_t::min_normal().uintval() ||
751 xbits.uintval() > FPBits_t::max_normal().uintval())) {
756 return FPBits_t::inf(Sign::NEG).get_val();
761 return FPBits_t::quiet_nan().get_val();
767 xbits = FPBits_t(x * 0x1.0p52);
795 double m = FPBits_t(x_m).get_val();
805 double c = FPBits_t(c_m).get_val();