Lines Matching refs:FPBits
23 using FPBits = __llvm_libc::fputil::FPBits<T>; variable
24 using UIntType = typename FPBits::UIntType;
26 const T zero = T(__llvm_libc::fputil::FPBits<T>::zero());
27 const T neg_zero = T(__llvm_libc::fputil::FPBits<T>::neg_zero());
28 const T inf = T(__llvm_libc::fputil::FPBits<T>::inf());
29 const T neg_inf = T(__llvm_libc::fputil::FPBits<T>::neg_inf());
30 const T nan = T(__llvm_libc::fputil::FPBits<T>::build_nan(1));
100 (FPBits::MAX_SUBNORMAL - FPBits::MIN_SUBNORMAL) / COUNT; in testSubnormalRange()
101 for (UIntType v = FPBits::MIN_SUBNORMAL, w = FPBits::MAX_SUBNORMAL; in testSubnormalRange()
102 v <= FPBits::MAX_SUBNORMAL && w >= FPBits::MIN_SUBNORMAL; in testSubnormalRange()
104 T x = T(FPBits(v)), y = T(FPBits(w)); in testSubnormalRange()
114 constexpr UIntType STEP = (FPBits::MAX_NORMAL - FPBits::MIN_NORMAL) / COUNT; in testNormalRange()
115 for (UIntType v = FPBits::MIN_NORMAL, w = FPBits::MAX_NORMAL; in testNormalRange()
116 v <= FPBits::MAX_NORMAL && w >= FPBits::MIN_NORMAL; in testNormalRange()
118 T x = T(FPBits(v)), y = T(FPBits(w)); in testNormalRange()