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.h190 VectorType *FirstVec = dyn_cast<VectorType>(First); in matchFirstLengthWAnyType() local
191 if (ThisVec && FirstVec) { in matchFirstLengthWAnyType()
192 return ThisVec->getElementCount() == FirstVec->getElementCount(); in matchFirstLengthWAnyType()
194 return (ThisVec == nullptr) && (FirstVec == nullptr) && (!This->isVoidTy()); in matchFirstLengthWAnyType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2335 bool areCompatibleVectorTypes(QualType FirstVec, QualType SecondVec);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp9861 bool ASTContext::areCompatibleVectorTypes(QualType FirstVec, in areCompatibleVectorTypes() argument
9863 assert(FirstVec->isVectorType() && "FirstVec should be a vector type"); in areCompatibleVectorTypes()
9866 if (hasSameUnqualifiedType(FirstVec, SecondVec)) in areCompatibleVectorTypes()
9871 const auto *First = FirstVec->castAs<VectorType>(); in areCompatibleVectorTypes()