| /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/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/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_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;
|
| /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)) && \
|