Searched refs:SmallSize (Results 1 – 3 of 3) sorted by relevance
66 explicit SmallPtrSetImpl(const void **SmallStorage, unsigned SmallSize) : in SmallPtrSetImpl() argument67 SmallArray(SmallStorage), CurArray(SmallStorage), CurArraySize(SmallSize) { in SmallPtrSetImpl()68 assert(SmallSize && (SmallSize & (SmallSize-1)) == 0 && in SmallPtrSetImpl()72 CurArray[SmallSize] = 0; in SmallPtrSetImpl()234 template<class PtrType, unsigned SmallSize>237 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };285 const SmallPtrSet<PtrType, SmallSize>&286 operator=(const SmallPtrSet<PtrType, SmallSize> &RHS) {292 void swap(SmallPtrSet<PtrType, SmallSize> &RHS) {
273 size_t SmallSize = getSmallSize(); in reserve() local274 BitVector *BV = new BitVector(SmallSize); in reserve()275 for (size_t i = 0; i < SmallSize; ++i) in reserve()
26 template<class PtrType, unsigned SmallSize>