| /src/external/gpl3/gcc/dist/fixincludes/tests/base/iso/ |
| math_c99.h | 75 #undef isunordered macro 76 #define isunordered(x, y) __builtin_isunordered(x, y) macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/iso/ |
| math_c99.h | 75 #undef isunordered macro 76 #define isunordered(x, y) __builtin_isunordered(x, y) macro
|
| /src/include/ |
| math.h | 478 #define isunordered(x, y) (isnan(x) || isnan(y)) macro 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)) && \
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| math.h | 144 #define isunordered(x, y) __builtin_isunordered((x),(y)) macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| math.h | 144 #define isunordered(x, y) __builtin_isunordered((x),(y)) macro
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_cuda_math_forward_declares.h | 114 __DEVICE__ bool isunordered(double, double); 115 __DEVICE__ bool isunordered(float, float); 238 using ::isunordered;
|
| __clang_cuda_cmath.h | 149 __DEVICE__ bool isunordered(float __x, float __y) { function 152 __DEVICE__ bool isunordered(double __x, double __y) { function 276 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(bool, isunordered); 403 using ::isunordered;
|
| __clang_hip_cmath.h | 93 __DEVICE__ bool isunordered(float __x, float __y) { function 96 __DEVICE__ bool isunordered(double __x, double __y) { function 462 __HIP_OVERLOAD2(bool, isunordered) 626 using ::isunordered;
|
| opencl-c.h | 10830 * Test if arguments are unordered. isunordered() 10834 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) [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 74 using std::isunordered;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 74 using std::isunordered;
|
| /src/external/apache2/llvm/dist/libcxx/include/ |
| math.h | 150 bool isunordered(arithmetic x, arithmetic y); 751 // isunordered 753 #ifdef isunordered 760 return isunordered(__lcpp_x, __lcpp_y); 763 #undef isunordered macro 773 isunordered(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT 779 #endif // isunordered
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/ |
| math.d | 281 //int isunordered(real-floating x, real-floating y); 282 pure int isunordered(float x, float y); 283 pure int isunordered(double x, double y); 284 pure int isunordered(real x, real y); 1639 pure int islessgreater(float x, float y) { return x != y && !isunordered(x, y); } 1641 pure int islessgreater(double x, double y) { return x != y && !isunordered(x, y); } 1643 pure int islessgreater(real x, real y) { return x != y && !isunordered(x, y); } 1645 //int isunordered(real-floating x, real-floating y); 1647 pure int isunordered(float x, float y) { return isnan(x) || isnan(y); } 1649 pure int isunordered(double x, double y) { return isnan(x) || isnan(y); [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
| simd_math.h | 1061 // where(isunordered(__x, __y), __r) = __quiet_NaN_v<_Tp>; 1068 where(isunordered(__x, __y), __fixup) = __quiet_NaN_v<_Tp>; 1070 where(!(__lo == 0 || isunordered(__x, __y) 1130 else if (isunordered(__absx[0], __absy[0] + __absz[0])) 1236 where(isunordered(__x, __y + __z), __fixup) 1247 where(!(__lo == 0 || isunordered(__x, __y + __z) 1363 _GLIBCXX_SIMD_MATH_CALL2_(isunordered, _Tp)
|
| simd_scalar.h | 632 { return std::isunordered(__x, __y); }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
| simd_math.h | 1049 // where(isunordered(__x, __y), __r) = __quiet_NaN_v<_Tp>; 1056 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])) 1223 where(isunordered(__x, __y + __z), __fixup) 1234 where(!(__lo == 0 || isunordered(__x, __y + __z) 1350 _GLIBCXX_SIMD_MATH_CALL2_(isunordered, _Tp)
|
| simd_scalar.h | 632 { return std::isunordered(__x, __y); }
|
| /src/external/bsd/file/dist/src/ |
| softmagic.c | 2244 matched = isunordered(fl, fv) ? 1 : fv != fl; 2248 matched = isunordered(fl, fv) ? 0 : fv == fl; 2277 matched = isunordered(dv, dl) ? 1 : dv != dl; 2281 matched = isunordered(dv, dl) ? 0 : dv == dl;
|
| /src/external/gpl3/gcc/dist/fixincludes/ |
| inclhack.def | 4247 "#undef isunordered\n" 4248 "#define isunordered(x, y) ((x) __builtin_isunordered(y))"; 5403 #define isunordered(x, y) __builtin_isunordered((x),(y))
|
| /src/external/gpl3/gcc.old/dist/fixincludes/ |
| inclhack.def | 4114 "#undef isunordered\n" 4115 "#define isunordered(x, y) ((x) __builtin_isunordered(y))"; 5269 #define isunordered(x, y) __builtin_isunordered((x),(y))
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/ |
| configure | 17514 i = isunordered(d1, d2); 17550 i = isunordered(d1, d2); 18386 i = isunordered(d1, d2); 18422 i = isunordered(d1, d2); [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/ |
| configure | 17329 i = isunordered(d1, d2); 17365 i = isunordered(d1, d2); 18005 i = isunordered(d1, d2); 18041 i = isunordered(d1, d2); [all...] |