Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2258 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9402 QualType SecondVec) { in areCompatibleVectorTypes() argument
9404 assert(SecondVec->isVectorType() && "SecondVec should be a vector type"); in areCompatibleVectorTypes()
9406 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
9412 const auto *Second = SecondVec->castAs<VectorType>(); in areCompatibleVectorTypes()