Searched refs:SmallSize (Results 1 – 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallPtrSet.h | 71 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() 210 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 214 void MoveHelper(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 352 SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize, 354 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {} 355 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) 356 : SmallPtrSetImplBase(SmallStorage, SmallSize) {} [all …]
|
D | BreadthFirstIterator.h | 39 template <typename NodeRef, unsigned SmallSize = 8> 40 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
|
D | 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>;
|
D | SmallBitVector.h | 349 size_t SmallSize = getSmallSize(); in reserve() local 350 BitVector *BV = new BitVector(SmallSize); in reserve() 351 for (size_t i = 0; i < SmallSize; ++i) in reserve()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | SmallPtrSet.cpp | 138 unsigned SmallSize, in SmallPtrSetImplBase() argument 141 MoveHelper(SmallSize, std::move(that)); in SmallPtrSetImplBase() 181 void SmallPtrSetImplBase::MoveFrom(unsigned SmallSize, in MoveFrom() argument 185 MoveHelper(SmallSize, std::move(RHS)); in MoveFrom() 188 void SmallPtrSetImplBase::MoveHelper(unsigned SmallSize, in MoveHelper() argument 207 RHS.CurArraySize = SmallSize; in MoveHelper()
|
/third_party/skia/third_party/externals/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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstructionCombining.cpp | 1330 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local 1331 APInt SmallScale = Scale.trunc(SmallSize); in Descale()
|