Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2171 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8648 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
8650 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
8653 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
8658 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()