Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DOpDescriptor.h193 VectorType *FirstVec = dyn_cast<VectorType>(First); in matchFirstLengthWAnyType() local
194 if (ThisVec && FirstVec) { in matchFirstLengthWAnyType()
195 return ThisVec->getElementCount() == FirstVec->getElementCount(); in matchFirstLengthWAnyType()
197 return (ThisVec == nullptr) && (FirstVec == nullptr) && (!This->isVoidTy()); in matchFirstLengthWAnyType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2526 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp10490 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
10492 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
10495 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
10500 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()