HomeSort by: relevance | last modified time | path
    Searched refs:SmallSize (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SmallPtrSet.h 71 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
74 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize)
76 CurArraySize(SmallSize), NumNonEmpty(0), NumTombstones(0) {
77 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 &&
210 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
214 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
445 /// SmallSize or less elements. This internally rounds up SmallSize to the nex
    [all...]
BreadthFirstIterator.h 39 template <typename NodeRef, unsigned SmallSize = 8>
40 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
DepthFirstIterator.h 68 template <typename NodeRef, unsigned SmallSize=8>
69 struct df_iterator_default_set : public SmallPtrSet<NodeRef, SmallSize> {
70 using BaseSet = SmallPtrSet<NodeRef, SmallSize>;
SmallBitVector.h 349 size_t SmallSize = getSmallSize();
350 BitVector *BV = new BitVector(SmallSize);
351 for (size_t i = 0; i < SmallSize; ++i)
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SmallPtrSet.cpp 138 unsigned SmallSize,
141 MoveHelper(SmallSize, std::move(that));
181 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize,
185 MoveHelper(SmallSize, std::move(RHS));
188 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize,
207 RHS.CurArraySize = SmallSize;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 1436 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits();
1437 APInt SmallScale = Scale.trunc(SmallSize);

Completed in 48 milliseconds