Home
last modified time | relevance | path

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

/freebsd-14-stable/lib/msun/src/
HDmath.h111 #define isunordered(x, y) __builtin_isunordered((x), (y)) macro
113 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
114 #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
115 #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
116 #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
117 #define islessgreater(x, y) (!isunordered((x), (y)) && \
119 #define isunordered(x, y) (isnan(x) || isnan(y)) macro
/freebsd-14-stable/contrib/llvm-project/libcxx/include/
HDmath.h354 # ifdef isunordered
355 # undef isunordered
428 using std::__math::isunordered;
HDcmath153 bool isunordered(arithmetic x, arithmetic y);
358 using ::isunordered _LIBCPP_USING_IF_EXISTS;
359 using ::isunordered _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/contrib/llvm-project/clang/lib/Headers/
HD__clang_cuda_math_forward_declares.h114 __DEVICE__ bool isunordered(double, double);
115 __DEVICE__ bool isunordered(float, float);
238 using ::isunordered;
HD__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;
HD__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;
HDopencl-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);
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-14-stable/contrib/llvm-project/libcxx/include/__math/
HDtraits.h179 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI bool isunordered(_A1 __x, _A2 __y) _NOEXCEPT { in isunordered() function
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std.compat/
HDcmath.inc264 using ::isunordered _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/contrib/file/src/
HDsoftmagic.c2168 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-14-stable/lib/libc/gen/
HDMakefile.inc469 isgreater.3 isunordered.3
/freebsd-14-stable/contrib/llvm-project/libcxx/modules/std/
HDcmath.inc262 using std::isunordered _LIBCPP_USING_IF_EXISTS;
/freebsd-14-stable/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
HDCSymbolMap.inc561 SYMBOL(isunordered, None, <math.h>)
HDStdSymbolMap.inc1852 SYMBOL(isunordered, std::, <cmath>)
1853 SYMBOL(isunordered, None, <cmath>)
1854 SYMBOL(isunordered, None, <math.h>)
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/SPIRV/
HDSPIRVBuiltins.td551 defm : DemangledNativeBuiltin<"isunordered", OpenCL_std, Relational, 2, 2, OpUnordered>;
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDOpenCLBuiltins.td818 "isunordered"] in {