Searched refs:SmallSize (Results 1 – 9 of 9) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | SmallPtrSet.h | 72 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() 188 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 192 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 303 SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize, 305 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {} 306 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) 307 : SmallPtrSetImplBase(SmallStorage, SmallSize) {} [all …]
|
D | SmallBitVector.h | 261 size_t SmallSize = getSmallSize(); in reserve() local 262 BitVector *BV = new BitVector(SmallSize); in reserve() 263 for (size_t i = 0; i < SmallSize; ++i) in reserve()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallPtrSet.h | 66 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) : in SmallPtrSetImpl() argument 67 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) { in SmallPtrSetImpl() 68 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImpl() 72 CurArray[SmallSize] = 0; in SmallPtrSetImpl() 233 template<class PtrType, unsigned SmallSize> 236 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val }; 284 const SmallPtrSet<PtrType, SmallSize>& 285 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {
|
D | SmallBitVector.h | 266 size_t SmallSize = getSmallSize(); in reserve() local 267 BitVector *BV = new BitVector(SmallSize); in reserve() 268 for (size_t i = 0; i < SmallSize; ++i) in reserve()
|
/external/llvm/lib/Support/ |
D | SmallPtrSet.cpp | 160 unsigned SmallSize, in SmallPtrSetImplBase() argument 163 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase() 206 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument 210 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom() 213 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument 232 RHS.CurArraySize = SmallSize; in MoveHelper()
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/IPO/ |
D | InlinerPass.h | 26 template<class PtrType, unsigned SmallSize>
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | InlinerPass.h | 28 template <class PtrType, unsigned SmallSize> class SmallPtrSet;
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | InlineCost.h | 30 template<class PtrType, unsigned SmallSize>
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1136 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local 1137 APInt SmallScale = Scale.trunc(SmallSize); in Descale()
|