Home
last modified time | relevance | path

Searched refs:SecondVec (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
DASTContext.h1789 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/external/clang/lib/AST/
DASTContext.cpp6760 QualType SecondVec) { in areCompatibleVectorTypes() argument
6762 assert(SecondVec->isVectorType() && "SecondVec should be a vector type"); in areCompatibleVectorTypes()
6764 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
6770 const VectorType *Second = SecondVec->getAs<VectorType>(); in areCompatibleVectorTypes()
/external/llvm-project/clang/include/clang/AST/
DASTContext.h2083 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/external/llvm-project/clang/lib/AST/
DASTContext.cpp8516 QualType SecondVec) { in areCompatibleVectorTypes() argument
8518 assert(SecondVec->isVectorType() && "SecondVec should be a vector type"); in areCompatibleVectorTypes()
8520 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
8526 const auto *Second = SecondVec->castAs<VectorType>(); in areCompatibleVectorTypes()