Home
last modified time | relevance | path

Searched refs:VecKind (Results 1 – 7 of 7) sorted by relevance

/external/clang/lib/Sema/
DSemaType.cpp1648 VectorType::VectorKind VecKind = VectorType::AltiVecVector; in ConvertDeclSpecToType() local
1650 VecKind = VectorType::AltiVecPixel; in ConvertDeclSpecToType()
1652 VecKind = VectorType::AltiVecBool; in ConvertDeclSpecToType()
1653 Result = Context.getVectorType(Result, 128/typeSize, VecKind); in ConvertDeclSpecToType()
6398 VectorType::VectorKind VecKind, Sema &S) { in isPermittedNeonBaseType() argument
6409 if (VecKind == VectorType::NeonPolyVector) { in isPermittedNeonBaseType()
6454 VectorType::VectorKind VecKind) { in HandleNeonVectorTypeAttr() argument
6480 if (!isPermittedNeonBaseType(CurType, VecKind, S)) { in HandleNeonVectorTypeAttr()
6496 CurType = S.Context.getVectorType(CurType, numElts, VecKind); in HandleNeonVectorTypeAttr()
DTreeTransform.h786 VectorType::VectorKind VecKind);
11583 VectorType::VectorKind VecKind) { in RebuildVectorType() argument
11585 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind); in RebuildVectorType()
/external/clang/include/clang/AST/
DType.h1451 unsigned VecKind : 3;
2790 return VectorKind(VectorTypeBits.VecKind);
2799 VectorKind VecKind) {
2803 ID.AddInteger(VecKind);
DASTContext.h1168 VectorType::VectorKind VecKind) const;
/external/clang/lib/AST/
DASTContext.cpp2886 VectorType::VectorKind VecKind) const { in getVectorType()
2891 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); in getVectorType()
2901 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); in getVectorType()
2908 VectorType(vecType, NumElts, Canonical, VecKind); in getVectorType()
DType.cpp184 VectorTypeBits.VecKind = vecKind; in VectorType()
/external/clang/lib/Serialization/
DASTReader.cpp5341 unsigned VecKind = Record[2]; in readTypeRecord() local
5343 (VectorType::VectorKind)VecKind); in readTypeRecord()