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

/external/clang/lib/Sema/
H A DSemaType.cpp1648 VectorType::VectorKind VecKind = VectorType::AltiVecVector; local
1650 VecKind = VectorType::AltiVecPixel;
1652 VecKind = VectorType::AltiVecBool;
1653 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
6398 VectorType::VectorKind VecKind, Sema &S) {
6409 if (VecKind == VectorType::NeonPolyVector) {
6454 VectorType::VectorKind VecKind) {
6480 if (!isPermittedNeonBaseType(CurType, VecKind, S)) {
6496 CurType = S.Context.getVectorType(CurType, numElts, VecKind);
6397 isPermittedNeonBaseType(QualType &Ty, VectorType::VectorKind VecKind, Sema &S) argument
6452 HandleNeonVectorTypeAttr(QualType& CurType, const AttributeList &Attr, Sema &S, VectorType::VectorKind VecKind) argument
H A DTreeTransform.h786 VectorType::VectorKind VecKind);
11583 VectorType::VectorKind VecKind) {
11585 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind);
11581 RebuildVectorType(QualType ElementType, unsigned NumElements, VectorType::VectorKind VecKind) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp5341 unsigned VecKind = Record[2]; local
5343 (VectorType::VectorKind)VecKind);
/external/clang/include/clang/AST/
H A DType.h1451 unsigned VecKind : 3;
2790 return VectorKind(VectorTypeBits.VecKind);
2799 VectorKind VecKind) {
2803 ID.AddInteger(VecKind);
2797 Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumElements, TypeClass TypeClass, VectorKind VecKind) argument

Completed in 173 milliseconds