Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DType.cpp226 VectorType::VectorKind VecKind) in DependentVectorType() argument
233 VectorTypeBits.VecKind = VecKind; in DependentVectorType()
239 VectorType::VectorKind VecKind) { in Profile() argument
241 ID.AddInteger(VecKind); in Profile()
337 VectorTypeBits.VecKind = vecKind; in VectorType()
DASTContext.cpp3840 VectorType::VectorKind VecKind) const { in getVectorType()
3845 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); in getVectorType()
3855 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); in getVectorType()
3862 VectorType(vecType, NumElts, Canonical, VecKind); in getVectorType()
3871 VectorType::VectorKind VecKind) const { in getDependentVectorType()
3874 VecKind); in getDependentVectorType()
3882 *this, VecType, QualType(Canon, 0), SizeExpr, AttrLoc, VecKind); in getDependentVectorType()
3887 *this, VecType, QualType(), SizeExpr, AttrLoc, VecKind); in getDependentVectorType()
3897 SourceLocation(), VecKind); in getDependentVectorType()
3899 *this, VecType, CanonTy, SizeExpr, AttrLoc, VecKind); in getDependentVectorType()
/external/llvm-project/clang/lib/Sema/
DSemaType.cpp1747 VectorType::VectorKind VecKind = VectorType::AltiVecVector; in ConvertDeclSpecToType() local
1749 VecKind = VectorType::AltiVecPixel; in ConvertDeclSpecToType()
1751 VecKind = VectorType::AltiVecBool; in ConvertDeclSpecToType()
1752 Result = Context.getVectorType(Result, 128/typeSize, VecKind); in ConvertDeclSpecToType()
7725 VectorType::VectorKind VecKind, Sema &S) { in isPermittedNeonBaseType() argument
7737 if (VecKind == VectorType::NeonPolyVector) { in isPermittedNeonBaseType()
7797 Sema &S, VectorType::VectorKind VecKind) { in HandleNeonVectorTypeAttr() argument
7819 if (!isPermittedNeonBaseType(CurType, VecKind, S)) { in HandleNeonVectorTypeAttr()
7835 CurType = S.Context.getVectorType(CurType, numElts, VecKind); in HandleNeonVectorTypeAttr()
7893 VectorType::VectorKind VecKind = VectorType::SveFixedLengthDataVector; in HandleArmSveVectorBitsTypeAttr() local
[all …]
DTreeTransform.h870 VectorType::VectorKind VecKind);
14009 VectorType::VectorKind VecKind) { in RebuildVectorType() argument
14011 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind); in RebuildVectorType()
14017 VectorType::VectorKind VecKind) { in RebuildDependentVectorType() argument
/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/llvm-project/clang/include/clang/AST/
DType.h1679 unsigned VecKind : 3;
3260 return VectorKind(VectorTypeBits.VecKind);
3270 VectorKind VecKind) {
3274 ID.AddInteger(VecKind);
3308 return VectorType::VectorKind(VectorTypeBits.VecKind);
3324 VectorType::VectorKind VecKind);
DASTContext.h1351 VectorType::VectorKind VecKind) const;
1356 VectorType::VectorKind VecKind) const;
/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()