Lines Matching refs:slot_set
157 SlotSet* slot_set = reinterpret_cast<SlotSet*>( in Allocate() local
160 IsAligned(reinterpret_cast<uintptr_t>(slot_set), kSystemPointerSize)); in Allocate()
162 *slot_set->initial_buckets() = buckets; in Allocate()
165 *slot_set->bucket(i) = nullptr; in Allocate()
167 return slot_set; in Allocate()
170 static void Delete(SlotSet* slot_set, size_t buckets) { in Delete() argument
171 if (slot_set == nullptr) return; in Delete()
174 slot_set->ReleaseBucket(i); in Delete()
178 size_t initial_buckets = *slot_set->initial_buckets(); in Delete()
181 DCHECK_NULL(*slot_set->bucket(i)); in Delete()
185 AlignedFree(reinterpret_cast<uint8_t*>(slot_set) - kInitialBucketsSize); in Delete()