Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSmallPtrSet.h71 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
74 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) in SmallPtrSetImplBase() argument
76 CurArraySize(SmallSize), NumNonEmpty(0), NumTombstones(0) { in SmallPtrSetImplBase()
77 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase()
210 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
214 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
448 template<class PtrType, unsigned SmallSize>
453 static_assert(SmallSize <= 32, "SmallSize should be small");
458 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
478 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSmallPtrSet.cpp138 unsigned SmallSize, in SmallPtrSetImplBase() argument
141 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase()
181 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument
185 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom()
188 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument
207 RHS.CurArraySize = SmallSize; in MoveHelper()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1436 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local
1437 APInt SmallScale = Scale.trunc(SmallSize); in Descale()