Home
last modified time | relevance | path

Searched refs:isunordered (Results 1 – 17 of 17) sorted by last modified time

/freebsd/lib/msun/src/
H A Dmath.h110 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro
112 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
113 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
114 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
115 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
116 #define islessgreater(x, y) (!isunordered((x), (y)) && \
118 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.inc262 using std::isunordered;
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc264 using ::isunordered;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h354 # ifdef isunordered
355 # undef isunordered
428 using std::__math::isunordered;
H A Dcmath153 bool isunordered(arithmetic x, arithmetic y);
349 using ::isunordered _LIBCPP_USING_IF_EXISTS;
350 using ::isunordered _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dtraits.h167 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI bool isunordered(_A1 __x, _A2 __y) _NOEXCEPT { in isunordered() function
/freebsd/lib/libc/gen/
H A DMakefile.inc445 isgreater.3 isunordered.3
/freebsd/contrib/arm-optimized-routines/math/test/
H A Dmathtest.c316 MFUNC(at_d, rt_i, isunordered, 0),
1097 case m_isunordered: intres = isunordered(d_arg1.f, d_arg2.f); break; in runtest()
1110 case m_isunorderedf: intres = isunordered(s_arg1.f, s_arg2.f); break; in runtest()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td479 defm : DemangledNativeBuiltin<"isunordered", OpenCL_std, Relational, 2, 2, OpUnordered>;
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSymbolMap.inc561 SYMBOL(isunordered, None, <math.h>)
H A DStdSymbolMap.inc1852 SYMBOL(isunordered, std::, <cmath>)
1853 SYMBOL(isunordered, None, <cmath>)
1854 SYMBOL(isunordered, None, <math.h>)
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_hip_cmath.h143 __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 Dopencl-c.h10829 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);
10836 int __ovld __cnfn isunordered(double, double);
10844 int __ovld __cnfn isunordered(half, half);
10845 short2 __ovld __cnfn isunordered(half2, half2);
10846 short3 __ovld __cnfn isunordered(half3, half3);
10847 short4 __ovld __cnfn isunordered(half4, half4);
[all …]
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;
/freebsd/contrib/file/src/
H A Dsoftmagic.c2164 matched = isunordered(fl, fv) ? 1 : fv != fl; in magiccheck()
2168 matched = isunordered(fl, fv) ? 0 : fv == fl; in magiccheck()
2197 matched = isunordered(dv, dl) ? 1 : dv != dl; in magiccheck()
2201 matched = isunordered(dv, dl) ? 0 : dv == dl; in magiccheck()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td818 "isunordered"] in {