/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-subzero/include/llvm/ADT/ |
D | SmallPtrSet.h | 78 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize, 81 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) in SmallPtrSetImplBase() argument 83 CurArraySize(SmallSize), NumNonEmpty(0), NumTombstones(0) { in SmallPtrSetImplBase() 84 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase() 198 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 202 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 342 SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize, 344 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {} 345 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) 346 : SmallPtrSetImplBase(SmallStorage, SmallSize) {} [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | SmallPtrSet.h | 72 SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize, 75 explicit SmallPtrSetImplBase(const void **SmallStorage, unsigned SmallSize) in SmallPtrSetImplBase() argument 77 CurArraySize(SmallSize), NumNonEmpty(0), NumTombstones(0) { in SmallPtrSetImplBase() 78 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase() 211 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 215 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 353 SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize, 355 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {} 356 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) 357 : SmallPtrSetImplBase(SmallStorage, SmallSize) {} [all …]
|
D | BreadthFirstIterator.h | 40 template <typename NodeRef, unsigned SmallSize = 8> 41 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
|
D | DepthFirstIterator.h | 69 template <typename NodeRef, unsigned SmallSize=8> 70 struct df_iterator_default_set : public SmallPtrSet<NodeRef, SmallSize> { 71 using BaseSet = SmallPtrSet<NodeRef, SmallSize>;
|
D | SmallBitVector.h | 350 size_t SmallSize = getSmallSize(); in reserve() local 351 BitVector *BV = new BitVector(SmallSize); in reserve() 352 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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | SmallPtrSet.cpp | 139 unsigned SmallSize, in SmallPtrSetImplBase() argument 142 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase() 182 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument 186 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom() 189 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument 208 RHS.CurArraySize = SmallSize; in MoveHelper()
|
/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-subzero/lib/Support/ |
D | SmallPtrSet.cpp | 161 unsigned SmallSize, in SmallPtrSetImplBase() argument 164 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase() 207 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument 211 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom() 214 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument 233 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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1250 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local 1251 APInt SmallScale = Scale.trunc(SmallSize); in Descale()
|