Home
last modified time | relevance | path

Searched refs:isunordered (Results 1 – 25 of 42) sorted by relevance

12

/netbsd-src/include/
H A Dmath.h478 #define isunordered(x, y) (isnan(x) || isnan(y))
479 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
480 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
481 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
482 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
483 #define islessgreater(x, y) (!isunordered((x), (y)) && \
465 #define isunordered( global() macro
/netbsd-src/external/gpl3/gcc/dist/fixincludes/tests/base/iso/
H A Dmath_c99.h75 #undef isunordered
76 #define isunordered(x, y) __builtin_isunordered(x, y) macro
/netbsd-src/external/gpl3/gcc.old/dist/fixincludes/tests/base/iso/
H A Dmath_c99.h75 #undef isunordered
76 #define isunordered(x, y) __builtin_isunordered(x, y) macro
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h114 __DEVICE__ bool isunordered(double, double);
115 __DEVICE__ bool isunordered(float, float);
238 using ::isunordered;
H A D__clang_cuda_cmath.h149 __DEVICE__ bool isunordered(float __x, float __y) { in isunordered() function
152 __DEVICE__ bool isunordered(double __x, double __y) { in isunordered() function
276 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(bool, isunordered);
403 using ::isunordered;
H A D__clang_hip_cmath.h93 __DEVICE__ bool isunordered(float __x, float __y) { in isunordered() function
96 __DEVICE__ bool isunordered(double __x, double __y) { in isunordered() function
462 __HIP_OVERLOAD2(bool, isunordered)
626 using ::isunordered;
H A Dopencl-c.h10834 int __ovld __cnfn isunordered(float x, float y);
10835 int2 __ovld __cnfn isunordered(float2 x, float2 y);
10836 int3 __ovld __cnfn isunordered(float3 x, float3 y);
10837 int4 __ovld __cnfn isunordered(float4 x, float4 y);
10838 int8 __ovld __cnfn isunordered(float8 x, float8 y);
10839 int16 __ovld __cnfn isunordered(float16 x, float16 y);
10841 int __ovld __cnfn isunordered(double x, double y);
10842 long2 __ovld __cnfn isunordered(double2 x, double2 y);
10843 long3 __ovld __cnfn isunordered(double3 x, double3 y);
10844 long4 __ovld __cnfn isunordered(double4 x, double4 y);
[all …]
/netbsd-src/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dmath.h144 #define isunordered(x, y) __builtin_isunordered((x),(y)) macro
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c/
H A Dcmath75 #undef isunordered
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c/
H A Dcmath75 #undef isunordered
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
H A Dmath.h74 using std::isunordered;
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
H A Dmath.h74 using std::isunordered;
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dcmath153 bool isunordered(arithmetic x, arithmetic y);
332 using ::isunordered;
333 using ::isunordered;
H A Dmath.h753 #ifdef isunordered
760 return isunordered(__lcpp_x, __lcpp_y); in __libcpp_isunordered()
763 #undef isunordered
773 isunordered(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT in isunordered() function
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_global/
H A Dcmath531 #undef isunordered
813 isunordered(float __x, float __y)
817 isunordered(double __x, double __y)
821 isunordered(long double __x, long double __y)
830 isunordered(_Tp __x, _Up __y)
942 isunordered(_Tp __f1, _Tp __f2)
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_global/
H A Dcmath531 #undef isunordered
813 isunordered(float __x, float __y)
817 isunordered(double __x, double __y)
821 isunordered(long double __x, long double __y)
830 isunordered(_Tp __x, _Up __y)
942 isunordered(_Tp __f1, _Tp __f2)
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdc/
H A Dmath.d282 pure int isunordered(float x, float y); in version()
283 pure int isunordered(double x, double y); in version()
284 pure int isunordered(real x, real y); in version()
1639 pure int islessgreater(float x, float y) { return x != y && !isunordered(x, y); } in islessgreater()
1641 pure int islessgreater(double x, double y) { return x != y && !isunordered(x, y); } in islessgreater()
1643 pure int islessgreater(real x, real y) { return x != y && !isunordered(x, y); } in islessgreater()
1647 pure int isunordered(float x, float y) { return isnan(x) || isnan(y); } in isunordered() function
1649 pure int isunordered(double x, double y) { return isnan(x) || isnan(y); } in isunordered() function
1651 pure int isunordered(real x, real y) { return isnan(x) || isnan(y); } in isunordered() function
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_std/
H A Dcmath467 #undef isunordered
572 isunordered(_Tp __f1, _Tp __f2)
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_std/
H A Dcmath467 #undef isunordered
572 isunordered(_Tp __f1, _Tp __f2)
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_math.h1056 where(isunordered(__x, __y), __fixup) = __quiet_NaN_v<_Tp>;
1058 where(!(__lo == 0 || isunordered(__x, __y)
1118 else if (isunordered(__absx[0], __absy[0] + __absz[0]))
H A Dsimd_scalar.h632 { return std::isunordered(__x, __y); }
/netbsd-src/external/bsd/file/dist/src/
H A Dsoftmagic.c2170 matched = isunordered(fl, fv) ? 1 : fv != fl; in magiccheck()
2174 matched = isunordered(fl, fv) ? 0 : fv == fl; in magiccheck()
2203 matched = isunordered(dv, dl) ? 1 : dv != dl; in magiccheck()
2207 matched = isunordered(dv, dl) ? 0 : dv == dl; in magiccheck()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/
H A Dsimd588 template <class Abi> simd_mask<float, Abi> isunordered(floatv<Abi> x, floatv<Abi> y);
589 template <class Abi> simd_mask<double, Abi> isunordered(doublev<Abi> x, doublev<Abi> y);
590 template <class Abi> simd_mask<long double, Abi> isunordered(ldoublev<Abi> x, ldoublev<Abi> y);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dcmath410 isunordered(_Tp __f1, _Tp __f2)
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dcmath410 isunordered(_Tp __f1, _Tp __f2)

12