Lines Matching refs:FPBits
32 using FPBits = __llvm_libc::fputil::FPBits<F>;
33 using UIntType = typename FPBits::UIntType;
35 const F zero = F(__llvm_libc::fputil::FPBits<F>::zero());
36 const F neg_zero = F(__llvm_libc::fputil::FPBits<F>::neg_zero());
37 const F inf = F(__llvm_libc::fputil::FPBits<F>::inf());
38 const F neg_inf = F(__llvm_libc::fputil::FPBits<F>::neg_inf());
39 const F nan = F(__llvm_libc::fputil::FPBits<F>::build_nan(1));
122 FPBits bits(F(1.0)); in do_round_numbers_test()
123 bits.set_unbiased_exponent(EXPONENT_LIMIT + FPBits::EXPONENT_BIAS); in do_round_numbers_test()
186 FPBits bits(F(1.0)); in testIntegerOverflow()
187 bits.set_unbiased_exponent(EXPONENT_LIMIT + FPBits::EXPONENT_BIAS); in testIntegerOverflow()
213 (FPBits::MAX_SUBNORMAL - FPBits::MIN_SUBNORMAL) / COUNT; in testSubnormalRange()
214 for (UIntType i = FPBits::MIN_SUBNORMAL; i <= FPBits::MAX_SUBNORMAL; in testSubnormalRange()
216 F x = F(FPBits(i)); in testSubnormalRange()
256 constexpr UIntType STEP = (FPBits::MAX_NORMAL - FPBits::MIN_NORMAL) / COUNT; in testNormalRange()
257 for (UIntType i = FPBits::MIN_NORMAL; i <= FPBits::MAX_NORMAL; i += STEP) { in testNormalRange()
258 F x = F(FPBits(i)); in testNormalRange()