Searched defs:VecKind (Results 1 - 4 of 4) 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/lib/Serialization/
H A DASTReader.cpp5194 unsigned VecKind = Record[2]; local
5196 (VectorType::VectorKind)VecKind);
/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

Completed in 384 milliseconds