Home
last modified time | relevance | path

Searched refs:isless (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/libclc/generic/lib/relational/
H A Disless.cl7 _CLC_DEFINE_RELATIONAL_BINARY(int, isless, __builtin_isless, float, float)
13 // The scalar version of isless(double, double) returns an int, but the vector versions
16 _CLC_DEF _CLC_OVERLOAD int isless(double x, double y){
20 _CLC_DEFINE_RELATIONAL_BINARY_VEC_ALL(long, isless, double, double)
27 // The scalar version of isless(half, half) returns an int, but the vector versions
30 _CLC_DEF _CLC_OVERLOAD int isless(half x, half y){
34 _CLC_DEFINE_RELATIONAL_BINARY_VEC_ALL(short, isless, half, half)
/llvm-project-15.0.7/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h101 __DEVICE__ bool isless(double, double);
104 __DEVICE__ bool isless(float, float);
233 using ::isless;
H A D__clang_cuda_cmath.h129 __DEVICE__ bool isless(float __x, float __y) { in isless() function
132 __DEVICE__ bool isless(double __x, double __y) { in isless() function
271 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(bool, isless);
399 using ::isless;
H A D__clang_hip_cmath.h119 __DEVICE__ __CONSTEXPR__ bool isless(float __x, float __y) { in isless() function
122 __DEVICE__ __CONSTEXPR__ bool isless(double __x, double __y) { in isless() function
513 __HIP_OVERLOAD2(bool, isless)
682 using ::isless;
H A Dopencl-c.h10616 int __ovld __cnfn isless(float, float);
10617 int2 __ovld __cnfn isless(float2, float2);
10618 int3 __ovld __cnfn isless(float3, float3);
10619 int4 __ovld __cnfn isless(float4, float4);
10620 int8 __ovld __cnfn isless(float8, float8);
10623 int __ovld __cnfn isless(double, double);
10631 int __ovld __cnfn isless(half, half);
10632 short2 __ovld __cnfn isless(half2, half2);
10633 short3 __ovld __cnfn isless(half3, half3);
10634 short4 __ovld __cnfn isless(half4, half4);
[all …]
/llvm-project-15.0.7/libclc/generic/include/clc/relational/
H A Disless.h1 #define __CLC_FUNCTION isless
/llvm-project-15.0.7/clang/test/Headers/Inputs/include/
H A Dcmath78 bool isless(double, double);
81 bool isless(float, float);
192 using ::isless;
/llvm-project-15.0.7/libclc/generic/lib/math/
H A Dminmag.inc14 const __CLC_GENTYPE res = select(y, x, __CLC_CONVERT_NATN(isless(fabs(x), fabs(y))));
/llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp62 Ambiguous isless(Ambiguous, Ambiguous){ return Ambiguous(); } in isless() function
686 #ifdef isless in test_isless()
687 #error isless defined in test_isless()
689 static_assert((std::is_same<decltype(isless((float)0, (float)0)), bool>::value), ""); in test_isless()
690 static_assert((std::is_same<decltype(isless((float)0, (double)0)), bool>::value), ""); in test_isless()
691 static_assert((std::is_same<decltype(isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
692 static_assert((std::is_same<decltype(isless((double)0, (float)0)), bool>::value), ""); in test_isless()
693 static_assert((std::is_same<decltype(isless((double)0, (double)0)), bool>::value), ""); in test_isless()
694 static_assert((std::is_same<decltype(isless(0, (double)0)), bool>::value), ""); in test_isless()
696 static_assert((std::is_same<decltype(isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
[all …]
/llvm-project-15.0.7/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp63 Ambiguous isless(Ambiguous, Ambiguous){ return Ambiguous(); } in isless() function
719 #ifdef isless in test_isless()
720 #error isless defined in test_isless()
722 static_assert((std::is_same<decltype(std::isless((float)0, (float)0)), bool>::value), ""); in test_isless()
723 static_assert((std::is_same<decltype(std::isless((float)0, (double)0)), bool>::value), ""); in test_isless()
724 static_assert((std::is_same<decltype(std::isless((float)0, (long double)0)), bool>::value), ""); in test_isless()
725 static_assert((std::is_same<decltype(std::isless((double)0, (float)0)), bool>::value), ""); in test_isless()
726 static_assert((std::is_same<decltype(std::isless((double)0, (double)0)), bool>::value), ""); in test_isless()
727 static_assert((std::is_same<decltype(std::isless(0, (double)0)), bool>::value), ""); in test_isless()
729 static_assert((std::is_same<decltype(std::isless((long double)0, (float)0)), bool>::value), ""); in test_isless()
[all …]
/llvm-project-15.0.7/libcxx/include/
H A Dmath.h664 #ifdef isless
671 return isless(__lcpp_x, __lcpp_y); in __libcpp_isless()
674 #undef isless
684 isless(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT in isless() function
H A Dcmath150 bool isless(arithmetic x, arithmetic y);
330 using ::isless _LIBCPP_USING_IF_EXISTS;
/llvm-project-15.0.7/libclc/generic/lib/
H A DSOURCES204 relational/isless.cl
/llvm-project-15.0.7/libc/AOR_v20.02/math/test/
H A Dmathtest.c303 MFUNC(at_d, rt_i, isless, 0),
1090 case m_isless: intres = isless(d_arg1.f, d_arg2.f); break; in runtest()
1103 case m_islessf: intres = isless(s_arg1.f, s_arg2.f); break; in runtest()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dbuiltins.c58 P(isless, (1., 2.)); in main()
/llvm-project-15.0.7/libc/docs/
H A Dmath.rst87 isless
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dsimd576 template <class Abi> simd_mask<float, Abi> isless(floatv<Abi> x, floatv<Abi> y);
577 template <class Abi> simd_mask<double, Abi> isless(doublev<Abi> x, doublev<Abi> y);
578 template <class Abi> simd_mask<long double, Abi> isless(ldoublev<Abi> x, ldoublev<Abi> y);
/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DCSymbolMap.inc552 SYMBOL(isless, None, <math.h>)
H A DStdSymbolMap.inc660 SYMBOL(isless, std::, <cmath>)
/llvm-project-15.0.7/clang/lib/Sema/
H A DOpenCLBuiltins.td816 "isless", "islessequal", "islessgreater", "isordered",
/llvm-project-15.0.7/llvm/test/DebugInfo/NVPTX/
H A Ddebug-info.ll8524 !94 = !DISubprogram(name: "isless", linkageName: "_ZL6islessff", scope: !7, file: !7, line: 112, ty…
/llvm-project-15.0.7/clang/docs/tools/
H A Dclang-formatted-files.txt3348 libclc/generic/include/clc/relational/isless.h