Searched refs:SmallSize (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | SmallPtrSet.h | 78 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImplBase() 211 void MoveFrom(unsigned SmallSize, SmallPtrSetImplBase &&RHS); 357 : SmallPtrSetImplBase(SmallStorage, SmallSize) {} 417 template<class PtrType, unsigned SmallSize> 422 static_assert(SmallSize <= 32, "SmallSize should be small"); 447 SmallPtrSet<PtrType, SmallSize> & 448 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) { 454 SmallPtrSet<PtrType, SmallSize> & 455 operator=(SmallPtrSet<PtrType, SmallSize> &&RHS) { 461 SmallPtrSet<PtrType, SmallSize> & [all …]
|
| H A D | BreadthFirstIterator.h | 40 template <typename NodeRef, unsigned SmallSize = 8> 41 using bf_iterator_default_set = SmallPtrSet<NodeRef, SmallSize>;
|
| H A 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>;
|
| H A 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()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A 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()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 1258 unsigned SmallSize = Cast->getSrcTy()->getPrimitiveSizeInBits(); in Descale() local 1259 APInt SmallScale = Scale.trunc(SmallSize); in Descale()
|