Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DSmallPtrSet.h78 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase()
211 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
357 : SmallPtrSetImplBase(SmallStorage, SmallSize) {}
417 template<class PtrType, unsigned SmallSize>
422 static_assert(SmallSize <= 32, "SmallSize should be small");
447 SmallPtrSet<PtrType, SmallSize> &
448 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
454 SmallPtrSet<PtrType, SmallSize> &
455 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) {
461 SmallPtrSet<PtrType, SmallSize> &
[all …]
H A DBreadthFirstIterator.h40 template <typename NodeRef, unsigned SmallSize = 8>
41 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
H A DDepthFirstIterator.h69 template <typename NodeRef, unsigned SmallSize=8>
70 struct df_iterator_default_set : public SmallPtrSet<NodeRef, SmallSize> {
71 using BaseSet = SmallPtrSet<NodeRef, SmallSize>;
H A DSmallBitVector.h350 size_t SmallSize = getSmallSize(); in reserve() local
351 BitVector *BV = new BitVector(SmallSize); in reserve()
352 for (size_t i = 0; i < SmallSize; ++i) in reserve()
/freebsd-12.1/contrib/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-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1258 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local
1259 APInt SmallScale = Scale.trunc(SmallSize); in Descale()