Home
last modified time | relevance | path

Searched refs:SmallSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallPtrSet.h76 CurArraySize(SmallSize), NumNonEmpty(0), NumTombstones(0) { in SmallPtrSetImplBase()
77 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase()
210 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
448 template<class PtrType, unsigned SmallSize>
453 static_assert(SmallSize <= 32, "SmallSize should be small");
478 SmallPtrSet<PtrType, SmallSize> &
479 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
485 SmallPtrSet<PtrType, SmallSize> &
486 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
492 SmallPtrSet<PtrType, SmallSize> &
[all …]
H A DBreadthFirstIterator.h39 template <typename NodeRef, unsigned SmallSize = 8>
40 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
H A DDepthFirstIterator.h68 template <typename NodeRef, unsigned SmallSize=8>
69 struct df_iterator_default_set : public SmallPtrSet<NodeRef, SmallSize> {
70 using BaseSet = SmallPtrSet<NodeRef, SmallSize>;
H A DSmallBitVector.h349 size_t SmallSize = getSmallSize(); in reserve() local
350 BitVector *BV = new BitVector(SmallSize); in reserve()
351 for (size_t i = 0; i < SmallSize; ++i) in reserve()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp139 unsigned SmallSize, in SmallPtrSetImplBase() argument
142 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase()
182 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument
186 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom()
189 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument
208 RHS.CurArraySize = SmallSize; in MoveHelper()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1477 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local
1478 APInt SmallScale = Scale.trunc(SmallSize); in Descale()