Searched refs:isnan (Results 51 - 75 of 81) sorted by relevance

1234

/openbsd-current/gnu/llvm/libcxx/include/__compare/
H A Dstrong_order.h88 bool __t_is_nan = _VSTD::isnan(__t);
89 bool __u_is_nan = _VSTD::isnan(__u);
/openbsd-current/lib/libm/src/ld80/
H A De_tgammal.c227 if( isnan(x) )
H A De_powl.c217 if( isnan(x) )
219 if( isnan(y) )
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_hip_cmath.h70 // `isinf(float)` and `isnan(float)` implementations that return an `int`. We do
90 __DEVICE__ __CONSTEXPR__ int isnan(float __x) { return ::__isnanf(__x); } function
91 __DEVICE__ __CONSTEXPR__ int isnan(double __x) { return ::__isnan(__x); } function
100 __DEVICE__ __CONSTEXPR__ bool isnan(float __x) { return ::__isnanf(__x); } function
101 __DEVICE__ __CONSTEXPR__ bool isnan(double __x) { return ::__isnan(__x); } function
516 __HIP_OVERLOAD1(bool, isnan)
722 // pull them in with libstdc++, because its ::isinf and ::isnan are different
723 // than its std::isinf and std::isnan.
726 using ::isnan;
H A D__clang_cuda_complex_builtins.h30 #define _ISNANd std::isnan
31 #define _ISNANf std::isnan
H A D__clang_hip_math.h1271 #define isnan(__x) _Generic((__x), float : __isnanf, double : __isnan)(__x) macro
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cmath.h480 __capture_isnan(_Tp __f) { return isnan(__f); }
525 #undef isnan macro
551 isnan(_Tp __f) { return ::__gnu_cxx::__capture_isnan(__f); } function
/openbsd-current/lib/libc/gen/
H A DMakefile.inc17 isnan.c isnormal.c signbit.c lockf.c login_cap.c nice.c \
/openbsd-current/gnu/usr.bin/perl/win32/
H A Dwin32.h327 #ifndef isnan
328 #define isnan _isnan /* ...same libraries as MSVC */ macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/
H A Dacconfig.h163 # define isnan _isnan macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cmath.h710 __capture_isnan(_Tp __f) { return isnan(__f); }
753 #undef isnan macro
779 isnan(_Tp __f) { return __capture_isnan(__f); } function in namespace:__gnu_cxx
823 using __gnu_cxx::isnan;
/openbsd-current/gnu/lib/libstdc++-v3/
H A Dconfig.h162 /* Define to 1 if you have the `isnan' function. */
952 # define isnan _isnan macro
/openbsd-current/gnu/llvm/libcxx/include/
H A Dmath.h142 bool isnan(arithmetic x);
335 # ifdef isnan
336 # undef isnan macro
442 // isnan
445 _LIBCPP_NODISCARD_EXT _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isnan(_A1 __x) _NOEXCEPT {
450 _LIBCPP_NODISCARD_EXT _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isnan(_A1) _NOEXCEPT {
455 _LIBCPP_NODISCARD_EXT inline _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isnan(float __x) _NOEXCEPT {
459 _LIBCPP_NODISCARD_EXT inline _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD bool isnan(double __x) _NOEXCEPT {
463 _LIBCPP_NODISCARD_EXT inline _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isnan(long double __x) _NOEXCEPT {
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DNativeFormatting.cpp172 if (std::isnan(N)) {
/openbsd-current/usr.bin/sort/
H A Dcoll.c1053 return (d == NAN || isnan(d));
1055 return (isnan(d));
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dexport.t164 isgreaterequal isinf isless islessequal islessgreater isnan
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm430 isinf isless islessequal islessgreater isnan isnormal isunordered j0 j1
/openbsd-current/usr.bin/awk/
H A Dtran.c419 } else if (isnan(d)) {
H A Dlib.c912 if (isnan(r) && s[0] == '-' && signbit(r) == 0)
H A Drun.c892 x_is_nan = isnan(x->fval);
893 y_is_nan = isnan(y->fval);
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DDumpDataExtractor.cpp226 if (std::isnan(f)) {
/openbsd-current/gnu/llvm/libcxx/include/__format/
H A Dformatter_floating_point.h612 return __formatter::__format_floating_point_non_finite(__ctx.out(), __specs, __negative, _VSTD::isnan(__value));
/openbsd-current/gnu/gcc/gcc/
H A Dsys-protos.h575 extern int isnan(double);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dsys-protos.h575 extern int isnan(double);
/openbsd-current/gnu/usr.bin/perl/
H A Dperl.h2677 # if defined(HAS_ISNANL) && !(defined(isnan) && defined(HAS_C99))
2680 # define Perl_isnan(x) isnan(x)
2778 # define Perl_isnan(x) isnan(x)
8550 * the C99 isinf() and isnan() are unavailable, and the NV_MIN becomes

Completed in 368 milliseconds

1234