Home
last modified time | relevance | path

Searched refs:is_inf (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/generic/
H A Ddiv.h70 if (x_bits.is_inf()) { in div()
71 if (y_bits.is_inf()) { in div()
80 if (y_bits.is_inf()) in div()
H A Dadd_sub.h77 if (x_bits.is_inf()) { in add_or_sub()
78 if (y_bits.is_inf()) { in add_or_sub()
90 if (y_bits.is_inf()) in add_or_sub()
H A Dmul.h71 if (x_bits.is_inf()) { in mul()
81 if (y_bits.is_inf()) { in mul()
H A DFMod.h188 if (sx.is_inf() || sy.is_zero()) { in pre_check()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dcomplex_basic_ops.h27 if (fputil::FPBits<real_t>(c_c.real).is_inf() || in project()
28 fputil::FPBits<real_t>(c_c.imag).is_inf()) in project()
H A Dfloat_to_string.h424 LIBC_INLINE constexpr bool is_inf() { return float_bits.is_inf(); } in is_inf() function
/freebsd/contrib/llvm-project/libc/src/__support/math/
H A Dexpf16.h76 if (x_bits.is_inf()) in expf16()
93 if (x_bits.is_inf()) in expf16()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/x86_64/
H A DNextAfterLongDouble.h64 if (from_bits.is_inf()) in nextafter()
107 if (from_bits.is_inf()) in nextafter()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DDivisionAndRemainderOperations.h34 if (xbits.is_inf() || ybits.is_zero()) in remquo()
42 if (ybits.is_inf()) { in remquo()
H A DHypot.h125 if (x_abs.is_inf() || y_abs.is_inf())
H A Dfpbits_str.h42 if (x.is_inf()) in str()
H A Dcast.h62 if (x_bits.is_inf()) in cast()
H A DFPBits.h434 LIBC_INLINE constexpr bool is_inf() const {
540 return !is_inf();
553 LIBC_INLINE constexpr bool is_inf() const {
557 return !is_inf() && !is_nan();
680 using UP::is_inf;
H A DManipulationFunctions.h61 } else if (bits.is_inf()) { in modf()
241 else if (from_bits.is_inf())
H A Ddyadic_float.h267 if (FPBits(result).is_inf()) { in generic_as()
308 if (ShouldSignalExceptions && FPBits<T>(r).is_inf()) in fast_as()
/freebsd/contrib/one-true-awk/
H A Dlib.c883 bool is_inf = false; in is_valid_number() local
898 is_inf = (strncasecmp(s+1, "inf", 3) == 0); in is_valid_number()
899 if ((is_nan || is_inf) in is_valid_number()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h723 struct is_inf { struct
728 inline cstfp_pred_ty<is_inf> m_Inf() { return cstfp_pred_ty<is_inf>(); } in m_Inf() argument