/freebsd/lib/msun/src/ |
H A D | math.h | 105 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro 107 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) 108 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y)) 109 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y)) 110 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y)) 111 #define islessgreater(x, y) (!isunordered((x), (y)) && \ 113 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | math.h | 354 # ifdef isunordered 355 # undef isunordered 428 using std::__math::isunordered;
|
H A D | cmath | 153 bool isunordered(arithmetic x, arithmetic y); 358 using ::isunordered _LIBCPP_USING_IF_EXISTS; 359 using ::isunordered _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math_forward_declares.h | 114 __DEVICE__ bool isunordered(double, double); 115 __DEVICE__ bool isunordered(float, float); 238 using ::isunordered;
|
H A D | __clang_cuda_cmath.h | 149 __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.h | 143 __DEVICE__ __CONSTEXPR__ bool isunordered(float __x, float __y) { in isunordered() function 146 __DEVICE__ __CONSTEXPR__ bool isunordered(double __x, double __y) { in isunordered() function 518 __HIP_OVERLOAD2(bool, isunordered) 686 using ::isunordered;
|
H A D | opencl-c.h | 10829 int __ovld __cnfn isunordered(float, float); 10830 int2 __ovld __cnfn isunordered(float2, float2); 10831 int3 __ovld __cnfn isunordered(float3, float3); 10832 int4 __ovld __cnfn isunordered(float4, float4); 10833 int8 __ovld __cnfn isunordered(float8, float8); 10834 int16 __ovld __cnfn isunordered(float16, float16); 10836 int __ovld __cnfn isunordered(double, double); 10837 long2 __ovld __cnfn isunordered(double2, double2); 10838 long3 __ovld __cnfn isunordered(double3, double3); 10839 long4 __ovld __cnfn isunordered(double4, double4); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__math/ |
H A D | traits.h | 179 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI bool isunordered(_A1 __x, _A2 __y) _NOEXCEPT { in isunordered() function
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cmath.inc | 264 using ::isunordered _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/arm-optimized-routines/math/test/ |
H A D | mathtest.c | 317 MFUNC(at_d, rt_i, isunordered, 0), 1098 case m_isunordered: intres = isunordered(d_arg1.f, d_arg2.f); break; in runtest() 1111 case m_isunorderedf: intres = isunordered(s_arg1.f, s_arg2.f); break; in runtest()
|
/freebsd/contrib/file/src/ |
H A D | softmagic.c | 2168 matched = isunordered(fl, fv) ? 1 : fv != fl; in magiccheck() 2172 matched = isunordered(fl, fv) ? 0 : fv == fl; in magiccheck() 2201 matched = isunordered(dv, dl) ? 1 : dv != dl; in magiccheck() 2205 matched = isunordered(dv, dl) ? 0 : dv == dl; in magiccheck()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|
H A D | cmath.inc | 262 using std::isunordered _LIBCPP_USING_IF_EXISTS;
|
/freebsd/lib/libc/gen/ |
H A D | Makefile.inc | 447 isgreater.3 isunordered.3
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | CSymbolMap.inc | 561 SYMBOL(isunordered, None, <math.h>)
|
H A D | StdSymbolMap.inc | 1852 SYMBOL(isunordered, std::, <cmath>) 1853 SYMBOL(isunordered, None, <cmath>) 1854 SYMBOL(isunordered, None, <math.h>)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVBuiltins.td | 551 defm : DemangledNativeBuiltin<"isunordered", OpenCL_std, Relational, 2, 2, OpUnordered>;
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | OpenCLBuiltins.td | 818 "isunordered"] in {
|