Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/
H A D__clang_cuda_intrinsics.h299 typedef char c2 __attribute__((ext_vector_type(2))); in __ldg()
310 typedef char c4 __attribute__((ext_vector_type(4))); in __ldg()
320 typedef short s2 __attribute__((ext_vector_type(2))); in __ldg()
328 typedef short s4 __attribute__((ext_vector_type(4))); in __ldg()
338 typedef int i2 __attribute__((ext_vector_type(2))); in __ldg()
346 typedef int i4 __attribute__((ext_vector_type(4))); in __ldg()
356 typedef long long ll2 __attribute__((ext_vector_type(2))); in __ldg()
401 typedef unsigned int ui2 __attribute__((ext_vector_type(2))); in __ldg()
428 typedef float f2 __attribute__((ext_vector_type(2))); in __ldg()
436 typedef float f4 __attribute__((ext_vector_type(4))); in __ldg()
[all …]
H A Dopencl-c.h93 typedef char char2 __attribute__((ext_vector_type(2)));
94 typedef char char3 __attribute__((ext_vector_type(3)));
95 typedef char char4 __attribute__((ext_vector_type(4)));
96 typedef char char8 __attribute__((ext_vector_type(8)));
113 typedef int int2 __attribute__((ext_vector_type(2)));
114 typedef int int3 __attribute__((ext_vector_type(3)));
115 typedef int int4 __attribute__((ext_vector_type(4)));
116 typedef int int8 __attribute__((ext_vector_type(8)));
117 typedef int int16 __attribute__((ext_vector_type(16)));
118 typedef uint uint2 __attribute__((ext_vector_type(2)));
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOperationKinds.def182 /// __attribute__((ext_vector_type(4))) int v = 5;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp3019 const clang::ExtVectorType *ext_vector_type = in IsVectorType() local
3021 if (ext_vector_type) { in IsVectorType()
3023 *size = ext_vector_type->getNumElements(); in IsVectorType()
3026 CompilerType(getASTContext(), ext_vector_type->getElementType()); in IsVectorType()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DAttr.td1129 let Spellings = [GNU<"ext_vector_type">];