Lines Matching defs:FPBits_t
740 using FPBits_t = typename fputil::FPBits<double>;
742 FPBits_t xbits(x);
745 int x_e = -FPBits_t::EXP_BIAS;
747 if (LIBC_UNLIKELY(xbits == FPBits_t::one())) {
752 if (LIBC_UNLIKELY(xbits.uintval() < FPBits_t::min_normal().uintval() ||
753 xbits.uintval() > FPBits_t::max_normal().uintval())) {
758 return FPBits_t::inf(Sign::NEG).get_val();
763 return FPBits_t::quiet_nan().get_val();
769 xbits = FPBits_t(x * 0x1.0p52);
797 double m = FPBits_t(x_m).get_val();
807 double c = FPBits_t(c_m).get_val();