Lines Matching refs:max_items
111 std::size_t max_items; variable
145 LocalCountingAllocator() : max_items{0} { clear_counters(); } in LocalCountingAllocator()
148 : base_type(other), max_items{other.max_items} { set_counters(other); } in LocalCountingAllocator()
152 : base_type(other), max_items{other.max_items} { set_counters(other); } in LocalCountingAllocator()
156 max_items = other.max_items;
162 if (max_items != 0 && items_allocated + n >= max_items) { in allocate()
190 max_items = max; in set_limits()
250 static std::size_t max_items; variable
270 if (max_items != 0 && items_allocated + n >= max_items) { in allocate()
314 max_items = max;
320 std::size_t StaticCountingAllocator<T>::max_items;
339 static std::size_t max_items; member
363 max_items = max;
368 std::size_t StaticSharedCountingAllocatorBase::max_items;
406 if (base_type::max_items != 0 && in allocate()
407 base_type::items_allocated + n >= base_type::max_items) { in allocate()