Lines Matching defs:limited_allocator
448 class limited_allocator {
450 friend class limited_allocator;
465 typedef limited_allocator<U, N> other;
468 TEST_CONSTEXPR_CXX20 limited_allocator() : handle_(detail::make_thread_unsafe_shared<BuffT>()) {}
470 limited_allocator(limited_allocator const&) = default;
473 TEST_CONSTEXPR explicit limited_allocator(limited_allocator<U, N> const& other) : handle_(other.handle_) {}
475 limited_allocator& operator=(const limited_allocator&) = delete;
484 TEST_CONSTEXPR inline bool operator==(limited_allocator<T, N> const& LHS, limited_allocator<U, N> const& RHS) {
489 TEST_CONSTEXPR inline bool operator!=(limited_allocator<T, N> const& LHS, limited_allocator<U, N> const& RHS) {