Home
last modified time | relevance | path

Searched refs:EltCount (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DFoldingSet.cpp314 void FoldingSetBase::reserve(unsigned EltCount, const FoldingSetInfo &Info) { in reserve() argument
318 if(EltCount < capacity()) in reserve()
320 GrowBucketCount(PowerOf2Floor(EltCount), Info); in reserve()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h201 void reserve(unsigned EltCount, const FoldingSetInfo &Info);
441 void reserve(unsigned EltCount) { in reserve() argument
442 return FoldingSetBase::reserve(EltCount, Derived::getFoldingSetInfo()); in reserve()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp2447 auto EltCount = ElementCount::getFixed(0); in getGetElementPtr() local
2449 EltCount = VecTy->getElementCount(); in getGetElementPtr()
2453 EltCount = VecTy->getElementCount(); in getGetElementPtr()
2455 if (EltCount.isNonZero()) in getGetElementPtr()
2456 ReqTy = VectorType::get(ReqTy, EltCount); in getGetElementPtr()
2470 cast<VectorType>(Idx->getType())->getElementCount() == EltCount) && in getGetElementPtr()
2475 } else if (GTI.isSequential() && EltCount.isNonZero() && in getGetElementPtr()
2477 Idx = ConstantVector::getSplat(EltCount, Idx); in getGetElementPtr()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h1102 ElementCount EltCount = PtrVTy->getElementCount();
1103 return VectorType::get(PtrTy, EltCount);
1107 ElementCount EltCount = IndexVTy->getElementCount();
1108 return VectorType::get(PtrTy, EltCount);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22215 APInt EltCount = APInt::getNullValue(NumElts); in matchScalarReduction() local
22216 M = SrcOpMap.insert(std::make_pair(Src, EltCount)).first; in matchScalarReduction()