Searched defs:VecKind (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Sema/
H A DSemaType.cpp900 VectorType::VectorKind VecKind = VectorType::AltiVecVector; local
902 VecKind = VectorType::AltiVecPixel;
904 VecKind = VectorType::AltiVecBool;
905 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
4072 VectorType::VectorKind VecKind,
4093 (VecKind == VectorType::NeonPolyVector &&
4119 CurType = S.Context.getVectorType(CurType, numElts, VecKind);
4070 HandleNeonVectorTypeAttr(QualType& CurType, const AttributeList &Attr, Sema &S, VectorType::VectorKind VecKind, const char *AttrName) argument
H A DTreeTransform.h679 VectorType::VectorKind VecKind);
8966 VectorType::VectorKind VecKind) {
8968 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind);
8964 RebuildVectorType(QualType ElementType, unsigned NumElements, VectorType::VectorKind VecKind) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp3847 unsigned VecKind = Record[2]; local
3849 (VectorType::VectorKind)VecKind);
/external/clang/include/clang/AST/
H A DType.h1291 /// VecKind - The kind of vector, either a generic vector type or some
1293 unsigned VecKind : 3;
2448 return VectorKind(VectorTypeBits.VecKind);
2457 VectorKind VecKind) {
2461 ID.AddInteger(VecKind);
2455 Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumElements, TypeClass TypeClass, VectorKind VecKind) argument

Completed in 155 milliseconds