| /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
|
| 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
|
| 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)) && \
|
| 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
|
| 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
|
| 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_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_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;
|
| __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/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 74 using std::isunordered;
|
| math.h | 74 using std::isunordered;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| math.h | 74 using std::isunordered;
|
| 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
|
| 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...] |
| 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)
|