Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDASTContext.h2075 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDASTContext.cpp8105 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
8107 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
8110 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
8115 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()