Home
last modified time | relevance | path

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

/external/llvm/include/llvm/ADT/
DSmallPtrSet.h67 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize,
69 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) : in SmallPtrSetImplBase() argument
70 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) { in SmallPtrSetImplBase()
71 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase()
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)
257 : SmallPtrSetImplBase(SmallStorage, SmallSize) {}
301 template<class PtrType, unsigned SmallSize>
[all …]
DSmallBitVector.h265 size_t SmallSize = getSmallSize(); in reserve() local
266 BitVector *BV = new BitVector(SmallSize); in reserve()
267 for (size_t i = 0; i < SmallSize; ++i) in reserve()
/external/llvm/lib/Support/
DSmallPtrSet.cpp193 unsigned SmallSize, in SmallPtrSetImplBase() argument
213 that.CurArraySize = SmallSize; in SmallPtrSetImplBase()
257 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument
279 RHS.CurArraySize = SmallSize; in MoveFrom()
/external/llvm/include/llvm/Transforms/IPO/
DInlinerPass.h26 template<class PtrType, unsigned SmallSize>
/external/llvm/lib/Target/WebAssembly/
DRelooper.cpp669 auto SmallSize = iter->second.size(); in Calculate() local
673 if (SmallSize != LargeSize) { // ignore the case where they are in Calculate()
676 if (SmallSize > LargeSize) { in Calculate()
/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1140 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local
1141 APInt SmallScale = Scale.trunc(SmallSize); in Descale()