Home
last modified time | relevance | path

Searched refs:__nodes_to_add (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/libstdc++/include/bits/
Ddeque.tcc711 _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front) in _M_reallocate_map() argument
715 const size_type __new_num_nodes = __old_num_nodes + __nodes_to_add; in _M_reallocate_map()
722 + (__add_at_front ? __nodes_to_add : 0); in _M_reallocate_map()
736 __nodes_to_add) + 2; in _M_reallocate_map()
740 + (__add_at_front ? __nodes_to_add : 0); in _M_reallocate_map()
Dstl_deque.h1528 _M_reserve_map_at_back(size_type __nodes_to_add = 1)
1530 if (__nodes_to_add + 1 > this->_M_impl._M_map_size
1532 _M_reallocate_map(__nodes_to_add, false);
1536 _M_reserve_map_at_front(size_type __nodes_to_add = 1)
1538 if (__nodes_to_add > size_type(this->_M_impl._M_start._M_node
1540 _M_reallocate_map(__nodes_to_add, true);
1544 _M_reallocate_map(size_type __nodes_to_add, bool __add_at_front);