Lines Matching refs:StaticCountingAllocator
241 class StaticCountingAllocator : public BaseAllocatorType {
261 using other = StaticCountingAllocator<typename base_traits::template rebind_alloc<U>>;
264 StaticCountingAllocator() = default;
267 StaticCountingAllocator( const StaticCountingAllocator<U>& other ) : base_type(other) {} in StaticCountingAllocator() function
320 std::size_t StaticCountingAllocator<T>::max_items;
322 std::atomic<std::size_t> StaticCountingAllocator<T>::items_allocated;
324 std::atomic<std::size_t> StaticCountingAllocator<T>::items_freed;
326 std::atomic<std::size_t> StaticCountingAllocator<T>::items_constructed;
328 std::atomic<std::size_t> StaticCountingAllocator<T>::items_destroyed;
330 std::atomic<std::size_t> StaticCountingAllocator<T>::allocations;
332 std::atomic<std::size_t> StaticCountingAllocator<T>::frees;
334 bool StaticCountingAllocator<T>::throwing;