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

/external/clang/lib/Sema/
H A DSemaType.cpp1076 VectorType::VectorKind VecKind = VectorType::AltiVecVector; local
1078 VecKind = VectorType::AltiVecPixel;
1080 VecKind = VectorType::AltiVecBool;
1081 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
4732 VectorType::VectorKind VecKind, Sema &S) {
4745 if (VecKind == VectorType::NeonPolyVector) {
4792 VectorType::VectorKind VecKind) {
4818 if (!isPermittedNeonBaseType(CurType, VecKind, S)) {
4834 CurType = S.Context.getVectorType(CurType, numElts, VecKind);
4731 isPermittedNeonBaseType(QualType &Ty, VectorType::VectorKind VecKind, Sema &S) argument
4790 HandleNeonVectorTypeAttr(QualType& CurType, const AttributeList &Attr, Sema &S, VectorType::VectorKind VecKind) argument
H A DTreeTransform.h729 VectorType::VectorKind VecKind);
9883 VectorType::VectorKind VecKind) {
9885 return SemaRef.Context.getVectorType(ElementType, NumElements, VecKind);
9881 RebuildVectorType(QualType ElementType, unsigned NumElements, VectorType::VectorKind VecKind) argument
/external/clang/include/clang/AST/
H A DType.h1311 /// VecKind - The kind of vector, either a generic vector type or some
1313 unsigned VecKind : 3;
2561 return VectorKind(VectorTypeBits.VecKind);
2570 VectorKind VecKind) {
2574 ID.AddInteger(VecKind);
2568 Profile(llvm::FoldingSetNodeID &ID, QualType ElementType, unsigned NumElements, TypeClass TypeClass, VectorKind VecKind) argument
H A DASTContext.h1031 VectorType::VectorKind VecKind) const;
/external/clang/lib/AST/
H A DType.cpp179 VectorTypeBits.VecKind = vecKind;
191 VectorTypeBits.VecKind = vecKind;
H A DASTContext.cpp2682 VectorType::VectorKind VecKind) const {
2687 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2697 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
2704 VectorType(vecType, NumElts, Canonical, VecKind);
/external/clang/lib/Serialization/
H A DASTReader.cpp5194 unsigned VecKind = Record[2]; local
5196 (VectorType::VectorKind)VecKind);

Completed in 1926 milliseconds