Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaType.cpp1547 VectorType::VectorKind VecKind = VectorType::AltiVecVector; in ConvertDeclSpecToType() local
1549 VecKind = VectorType::AltiVecPixel; in ConvertDeclSpecToType()
1551 VecKind = VectorType::AltiVecBool; in ConvertDeclSpecToType()
1552 Result = Context.getVectorType(Result, 128/typeSize, VecKind); in ConvertDeclSpecToType()
6065 VectorType::VectorKind VecKind, Sema &S) { in isPermittedNeonBaseType() argument
6076 if (VecKind == VectorType::NeonPolyVector) { in isPermittedNeonBaseType()
6121 VectorType::VectorKind VecKind) { in HandleNeonVectorTypeAttr() argument
6147 if (!isPermittedNeonBaseType(CurType, VecKind, S)) { in HandleNeonVectorTypeAttr()
6163 CurType = S.Context.getVectorType(CurType, numElts, VecKind); in HandleNeonVectorTypeAttr()
DTreeTransform.h777 VectorType::VectorKind VecKind);
11243 VectorType::VectorKind VecKind) { in RebuildVectorType() argument
11245 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind); in RebuildVectorType()
/external/clang/include/clang/AST/
DType.h1419 unsigned VecKind : 3;
2757 return VectorKind(VectorTypeBits.VecKind);
2766 VectorKind VecKind) {
2770 ID.AddInteger(VecKind);
DASTContext.h1155 VectorType::VectorKind VecKind) const;
/external/clang/lib/AST/
DASTContext.cpp2876 VectorType::VectorKind VecKind) const { in getVectorType()
2881 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); in getVectorType()
2891 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); in getVectorType()
2898 VectorType(vecType, NumElts, Canonical, VecKind); in getVectorType()
DType.cpp184 VectorTypeBits.VecKind = vecKind; in VectorType()
/external/clang/lib/Serialization/
DASTReader.cpp5319 unsigned VecKind = Record[2]; in readTypeRecord() local
5321 (VectorType::VectorKind)VecKind); in readTypeRecord()