Lines Matching refs:items_constructed
114 counter_type items_constructed; variable
124 items_constructed = it_constructed; in set_counters()
132 set_counters(alloc.items_allocated, alloc.items_freed, alloc.items_constructed, in set_counters()
180 ++items_constructed; in construct()
199 counter_type items_constructed; member
209 items_constructed(it_constructed), items_destroyed(it_destroyed), in AllocatorCounters()
215 items_constructed(other.items_constructed.load()), in AllocatorCounters()
223 items_constructed.store(other.items_constructed.load());
233 lhs.items_constructed == rhs.items_constructed &&
253 static counter_type items_constructed; variable
290 ++items_constructed; in construct()
301 … return {items_allocated, items_freed, items_constructed, items_destroyed, allocations, frees}; in counters()
307 items_constructed = 0; in init_counters()
326 std::atomic<std::size_t> StaticCountingAllocator<T>::items_constructed;
342 static counter_type items_constructed; member
349 return { items_allocated.load(), items_freed.load(), items_constructed.load(), in counters()
356 items_constructed = 0; in init_counters()
369 std::atomic<std::size_t> StaticSharedCountingAllocatorBase::items_constructed;
427 ++base_type::items_constructed; in construct()