Lines Matching refs:items_freed
113 counter_type items_freed; variable
123 items_freed = it_freed; in set_counters()
132 set_counters(alloc.items_allocated, alloc.items_freed, alloc.items_constructed, in set_counters()
173 items_freed += n; in deallocate()
198 counter_type items_freed; member
208 : items_allocated(it_allocated), items_freed(it_freed), in AllocatorCounters()
214 items_freed(other.items_allocated.load()), in AllocatorCounters()
222 items_freed.store(other.items_freed.load());
232 lhs.items_freed == rhs.items_freed &&
252 static counter_type items_freed; variable
284 items_freed += n; in deallocate()
301 … return {items_allocated, items_freed, items_constructed, items_destroyed, allocations, frees}; in counters()
306 items_freed = 0; in init_counters()
324 std::atomic<std::size_t> StaticCountingAllocator<T>::items_freed;
341 static counter_type items_freed; member
349 return { items_allocated.load(), items_freed.load(), items_constructed.load(), in counters()
355 items_freed = 0; in init_counters()
372 std::atomic<std::size_t> StaticSharedCountingAllocatorBase::items_freed;
420 base_type::items_freed += n; in deallocate()