Home | History | Annotate | Download | only in src

Lines Matching defs:short_alloc

4824 class short_alloc
4831 template <class _Up> struct rebind {typedef short_alloc<_Up, N> other;};
4833 short_alloc(arena<N>& a) noexcept : a_(a) {}
4835 short_alloc(const short_alloc<U, N>& a) noexcept
4837 short_alloc(const short_alloc&) = default;
4838 short_alloc& operator=(const short_alloc&) = delete;
4852 operator==(const short_alloc<T1, N1>& x, const short_alloc<U, M>& y) noexcept;
4854 template <class U, std::size_t M> friend class short_alloc;
4860 operator==(const short_alloc<T, N>& x, const short_alloc<U, M>& y) noexcept
4868 operator!=(const short_alloc<T, N>& x, const short_alloc<U, M>& y) noexcept
4926 template <class T> using Alloc = short_alloc<T, bs>;