Home
last modified time | relevance | path

Searched refs:ext_vector_type (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A Dopencl-c-base.h108 typedef char char2 __attribute__((ext_vector_type(2)));
109 typedef char char3 __attribute__((ext_vector_type(3)));
110 typedef char char4 __attribute__((ext_vector_type(4)));
111 typedef char char8 __attribute__((ext_vector_type(8)));
128 typedef int int2 __attribute__((ext_vector_type(2)));
129 typedef int int3 __attribute__((ext_vector_type(3)));
130 typedef int int4 __attribute__((ext_vector_type(4)));
131 typedef int int8 __attribute__((ext_vector_type(8)));
132 typedef int int16 __attribute__((ext_vector_type(16)));
133 typedef uint uint2 __attribute__((ext_vector_type(2)));
[all …]
H A D__clang_cuda_intrinsics.h293 typedef char c2 __attribute__((ext_vector_type(2))); in __ldg()
304 typedef char c4 __attribute__((ext_vector_type(4))); in __ldg()
314 typedef short s2 __attribute__((ext_vector_type(2))); in __ldg()
322 typedef short s4 __attribute__((ext_vector_type(4))); in __ldg()
332 typedef int i2 __attribute__((ext_vector_type(2))); in __ldg()
340 typedef int i4 __attribute__((ext_vector_type(4))); in __ldg()
350 typedef long long ll2 __attribute__((ext_vector_type(2))); in __ldg()
395 typedef unsigned int ui2 __attribute__((ext_vector_type(2))); in __ldg()
422 typedef float f2 __attribute__((ext_vector_type(2))); in __ldg()
430 typedef float f4 __attribute__((ext_vector_type(4))); in __ldg()
[all …]
H A D__clang_hip_libdevice_declares.h311 typedef _Float16 __2f16 __attribute__((ext_vector_type(2)));
312 typedef short __2i16 __attribute__((ext_vector_type(2)));
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def190 /// __attribute__((ext_vector_type(4))) int v = 5;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2913 const clang::ExtVectorType *ext_vector_type = in IsVectorType() local
2915 if (ext_vector_type) { in IsVectorType()
2917 *size = ext_vector_type->getNumElements(); in IsVectorType()
2920 CompilerType(this, ext_vector_type->getElementType().getAsOpaquePtr()); in IsVectorType()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td1346 let Spellings = [GNU<"ext_vector_type">];