Home | History | Annotate | Download | only in gc

Lines Matching full:bins_

2334   std::multimap<size_t, uintptr_t> bins_;
2358 bins_.insert(std::make_pair(size, position));
2374 auto it = bins_.lower_bound(alloc_size);
2375 if (it == bins_.end()) {
2389 bins_.erase(it); // Erase the old bin which we replace with the new smaller bin.