Lines Matching refs:Capacity
56 template <typename Value, std::size_t Capacity, typename Strategy>
114 template <typename V, std::size_t Capacity, typename S>
115 static void check_capacity(varray<V, Capacity, S> const&, std::size_t s) in check_capacity()
117 if ( Capacity < s ) in check_capacity()
171 template <typename Value, std::size_t Capacity, typename Strategy>
220 template <typename Value, std::size_t Capacity, typename Strategy = strategy::def<Value> >
224 Value, Capacity, Strategy
229 sizeof(Value[Capacity]),
230 boost::container::dtl::alignment_of<Value[Capacity]>::value
1471 static size_type capacity() { return Capacity; } in capacity()
1482 static size_type max_size() { return Capacity; } in max_size()
1578 Capacity < C, in swap_dispatch()
1739 … std::ptrdiff_t d = boost::container::iterator_distance(position, this->begin() + Capacity); in insert_dispatch()
1742 …capacity(*this, count <= static_cast<std::size_t>(d) ? m_size + count : Capacity + 1); // may thr… in insert_dispatch()
1838 std::ptrdiff_t d = boost::container::iterator_distance(it, this->begin() + Capacity); in assign_dispatch()
1842 …errh::check_capacity(*this, count <= static_cast<std::size_t>(d) ? s : Capacity + 1); … in assign_dispatch()