Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DASTContext.h2235 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp9391 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
9393 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
9396 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
9401 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()