HomeSort by relevance Sort by last modified time
    Searched refs:SmallSize (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 67 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
69 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) :
70 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) {
71 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 &&
144 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS);
253 SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize,
255 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {}
256 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize)
    [all...]
SmallBitVector.h 265 size_t SmallSize = getSmallSize();
266 BitVector *BV = new BitVector(SmallSize);
267 for (size_t i = 0; i < SmallSize; ++i)
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 26 template<class PtrType, unsigned SmallSize>
  /external/llvm/lib/Support/
SmallPtrSet.cpp 193 unsigned SmallSize,
213 that.CurArraySize = SmallSize;
257 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize,
279 RHS.CurArraySize = SmallSize;
  /external/llvm/lib/Target/WebAssembly/
Relooper.cpp 669 auto SmallSize = iter->second.size();
673 if (SmallSize != LargeSize) { // ignore the case where they are
676 if (SmallSize > LargeSize) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]

Completed in 478 milliseconds