Searched refs:vecType (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp174 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
178 vecType = NVPTX::PTXLdStInstCode::V2;
180 vecType = NVPTX::PTXLdStInstCode::V4;
231 getI32Imm(vecType),
261 getI32Imm(vecType),
291 getI32Imm(vecType),
320 getI32Imm(vecType),
363 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
367 vecType = NVPTX::PTXLdStInstCode::V2;
369 vecType
[all...]
/external/clang/lib/AST/
H A DType.cpp150 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, argument
152 : Type(Vector, canonType, vecType->isDependentType(),
153 vecType->isInstantiationDependentType(),
154 vecType->isVariablyModifiedType(),
155 vecType->containsUnexpandedParameterPack()),
156 ElementType(vecType)
162 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, argument
164 : Type(tc, canonType, vecType->isDependentType(),
165 vecType->isInstantiationDependentType(),
166 vecType
[all...]
H A DASTContext.cpp2346 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, argument
2348 assert(vecType->isBuiltinType());
2352 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2361 if (!vecType.isCanonical()) {
2362 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
2369 VectorType(vecType, NumElts, Canonical, VecKind);
2378 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { argument
2379 assert(vecType->isBuiltinType() || vecType->isDependentType());
2383 VectorType::Profile(ID, vecType, NumElt
2407 getDependentSizedExtVectorType(QualType vecType, Expr *SizeExpr, SourceLocation AttrLoc) const argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprMember.cpp286 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); local
311 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
321 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
324 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
348 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
361 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
367 return vecType->getElementType();
371 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
/external/clang/include/clang/AST/
H A DType.h2431 VectorType(QualType vecType, unsigned nElements, QualType canonType,
2434 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
2476 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType) : argument
2477 VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}

Completed in 144 milliseconds