Home
last modified time | relevance | path

Searched defs:isgreater (Results 1 – 4 of 4) sorted by path

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h117 __DEVICE__ bool isgreater(float __x, float __y) { in isgreater() function
120 __DEVICE__ bool isgreater(double __x, double __y) { in isgreater() function
H A D__clang_hip_cmath.h107 __DEVICE__ __CONSTEXPR__ bool isgreater(float __x, float __y) { in isgreater() function
110 __DEVICE__ __CONSTEXPR__ bool isgreater(double __x, double __y) { in isgreater() function
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dtraits.h127 _LIBCPP_NODISCARD_EXT inline _LIBCPP_HIDE_FROM_ABI bool isgreater(_A1 __x, _A2 __y) _NOEXCEPT { in isgreater() function
/freebsd/lib/msun/src/
H A Dmath.h105 #define isgreater(x, y) __builtin_isgreater((x), (y)) macro
112 #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y)) macro