Lines Matching refs:allocations
116 counter_type allocations; variable
126 allocations = allocs; in set_counters()
133 alloc.items_destroyed, alloc.allocations, alloc.frees); in set_counters()
166 ++allocations; in allocate()
201 counter_type allocations; member
210 allocations(allocs), frees(fres) {} in AllocatorCounters()
217 allocations(other.allocations.load()), in AllocatorCounters()
218 frees(other.allocations.load()) {} in AllocatorCounters()
225 allocations.store(other.allocations.load());
235 lhs.allocations == rhs.allocations &&
255 static counter_type allocations; variable
277 ++allocations; in allocate()
301 … return {items_allocated, items_freed, items_constructed, items_destroyed, allocations, frees}; in counters()
309 allocations = 0; in init_counters()
330 std::atomic<std::size_t> StaticCountingAllocator<T>::allocations;
344 static counter_type allocations; member
350 items_destroyed.load(), allocations.load(), frees.load() }; in counters()
358 allocations = 0; in init_counters()
373 std::atomic<std::size_t> StaticSharedCountingAllocatorBase::allocations;
413 ++base_type::allocations; in allocate()