59 namespace std _GLIBCXX_VISIBILITY(default)
61 _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
63 #if __cplusplus >= 201103L
64 template <
typename _Tp,
typename _Alloc>
67 _M_default_initialize()
72 for (__cur = this->_M_impl._M_start._M_node;
73 __cur < this->_M_impl._M_finish._M_node;
75 std::__uninitialized_default_a(*__cur, *__cur + _S_buffer_size(),
76 _M_get_Tp_allocator());
77 std::__uninitialized_default_a(this->_M_impl._M_finish._M_first,
78 this->_M_impl._M_finish._M_cur,
79 _M_get_Tp_allocator());
83 std::_Destroy(this->_M_impl._M_start, iterator(*__cur, __cur),
84 _M_get_Tp_allocator());
85 __throw_exception_again;
90 template <
typename _Tp,
typename _Alloc>
95 const size_type __len =
size();
98 if (__len >= __x.
size())
99 _M_erase_at_end(std::copy(__x.
begin(), __x.
end(),
100 this->_M_impl._M_start));
104 std::copy(__x.
begin(), __mid, this->_M_impl._M_start);
105 insert(this->_M_impl._M_finish, __mid, __x.
end());
111 #if __cplusplus >= 201103L
112 template<
typename _Tp,
typename _Alloc>
113 template<
typename... _Args>
118 if (this->_M_impl._M_start._M_cur != this->_M_impl._M_start._M_first)
120 this->_M_impl.construct(this->_M_impl._M_start._M_cur - 1,
121 std::forward<_Args>(__args)...);
122 --this->_M_impl._M_start._M_cur;
125 _M_push_front_aux(std::forward<_Args>(__args)...);
128 template<
typename _Tp,
typename _Alloc>
129 template<
typename... _Args>
132 emplace_back(_Args&&... __args)
134 if (this->_M_impl._M_finish._M_cur
135 != this->_M_impl._M_finish._M_last - 1)
137 this->_M_impl.construct(this->_M_impl._M_finish._M_cur,
138 std::forward<_Args>(__args)...);
139 ++this->_M_impl._M_finish._M_cur;
142 _M_push_back_aux(std::forward<_Args>(__args)...);
146 template <
typename _Tp,
typename _Alloc>
147 typename deque<_Tp, _Alloc>::iterator
151 if (__position._M_cur == this->_M_impl._M_start._M_cur)
154 return this->_M_impl._M_start;
156 else if (__position._M_cur == this->_M_impl._M_finish._M_cur)
159 iterator __tmp = this->_M_impl._M_finish;
164 return _M_insert_aux(__position, __x);
167 #if __cplusplus >= 201103L
168 template<
typename _Tp,
typename _Alloc>
169 template<
typename... _Args>
174 if (__position._M_cur == this->_M_impl._M_start._M_cur)
176 emplace_front(std::forward<_Args>(__args)...);
177 return this->_M_impl._M_start;
179 else if (__position._M_cur == this->_M_impl._M_finish._M_cur)
181 emplace_back(std::forward<_Args>(__args)...);
182 iterator __tmp = this->_M_impl._M_finish;
187 return _M_insert_aux(__position, std::forward<_Args>(__args)...);
191 template <
typename _Tp,
typename _Alloc>
192 typename deque<_Tp, _Alloc>::iterator
198 const difference_type __index = __position -
begin();
199 if (static_cast<size_type>(__index) < (
size() >> 1))
201 if (__position !=
begin())
202 _GLIBCXX_MOVE_BACKWARD3(
begin(), __position, __next);
208 _GLIBCXX_MOVE3(__next,
end(), __position);
211 return begin() + __index;
214 template <
typename _Tp,
typename _Alloc>
219 if (__first == __last)
221 else if (__first ==
begin() && __last ==
end())
228 const difference_type __n = __last - __first;
229 const difference_type __elems_before = __first -
begin();
230 if (static_cast<size_type>(__elems_before) <= (
size() - __n) / 2)
232 if (__first !=
begin())
233 _GLIBCXX_MOVE_BACKWARD3(
begin(), __first, __last);
234 _M_erase_at_begin(
begin() + __n);
239 _GLIBCXX_MOVE3(__last,
end(), __first);
240 _M_erase_at_end(
end() - __n);
242 return begin() + __elems_before;
246 template <
typename _Tp,
class _Alloc>
247 template <
typename _InputIterator>
254 for (; __first != __last && __cur !=
end(); ++__cur, ++__first)
256 if (__first == __last)
257 _M_erase_at_end(__cur);
259 insert(
end(), __first, __last);
262 template <
typename _Tp,
typename _Alloc>
265 _M_fill_insert(iterator __pos, size_type __n,
const value_type& __x)
267 if (__pos._M_cur == this->_M_impl._M_start._M_cur)
269 iterator __new_start = _M_reserve_elements_at_front(__n);
272 std::__uninitialized_fill_a(__new_start, this->_M_impl._M_start,
273 __x, _M_get_Tp_allocator());
274 this->_M_impl._M_start = __new_start;
278 _M_destroy_nodes(__new_start._M_node,
279 this->_M_impl._M_start._M_node);
280 __throw_exception_again;
283 else if (__pos._M_cur == this->_M_impl._M_finish._M_cur)
285 iterator __new_finish = _M_reserve_elements_at_back(__n);
288 std::__uninitialized_fill_a(this->_M_impl._M_finish,
290 _M_get_Tp_allocator());
291 this->_M_impl._M_finish = __new_finish;
295 _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1,
296 __new_finish._M_node + 1);
297 __throw_exception_again;
301 _M_insert_aux(__pos, __n, __x);
304 #if __cplusplus >= 201103L
305 template <
typename _Tp,
typename _Alloc>
308 _M_default_append(size_type __n)
312 iterator __new_finish = _M_reserve_elements_at_back(__n);
315 std::__uninitialized_default_a(this->_M_impl._M_finish,
317 _M_get_Tp_allocator());
318 this->_M_impl._M_finish = __new_finish;
322 _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1,
323 __new_finish._M_node + 1);
324 __throw_exception_again;
329 template <
typename _Tp,
typename _Alloc>
334 const difference_type __front_capacity
335 = (this->_M_impl._M_start._M_cur - this->_M_impl._M_start._M_first);
336 if (__front_capacity == 0)
339 const difference_type __back_capacity
340 = (this->_M_impl._M_finish._M_last - this->_M_impl._M_finish._M_cur);
341 if (__front_capacity + __back_capacity < _S_buffer_size())
344 return std::__shrink_to_fit_aux<deque>::_S_do_it(*
this);
348 template <
typename _Tp,
typename _Alloc>
356 for (__cur = this->_M_impl._M_start._M_node;
357 __cur < this->_M_impl._M_finish._M_node;
359 std::__uninitialized_fill_a(*__cur, *__cur + _S_buffer_size(),
360 __value, _M_get_Tp_allocator());
361 std::__uninitialized_fill_a(this->_M_impl._M_finish._M_first,
362 this->_M_impl._M_finish._M_cur,
363 __value, _M_get_Tp_allocator());
368 _M_get_Tp_allocator());
369 __throw_exception_again;
373 template <
typename _Tp,
typename _Alloc>
374 template <
typename _InputIterator>
380 this->_M_initialize_map(0);
383 for (; __first != __last; ++__first)
389 __throw_exception_again;
393 template <
typename _Tp,
typename _Alloc>
394 template <
typename _ForwardIterator>
401 this->_M_initialize_map(__n);
403 _Map_pointer __cur_node;
406 for (__cur_node = this->_M_impl._M_start._M_node;
407 __cur_node < this->_M_impl._M_finish._M_node;
410 _ForwardIterator __mid = __first;
412 std::__uninitialized_copy_a(__first, __mid, *__cur_node,
413 _M_get_Tp_allocator());
416 std::__uninitialized_copy_a(__first, __last,
417 this->_M_impl._M_finish._M_first,
418 _M_get_Tp_allocator());
424 _M_get_Tp_allocator());
425 __throw_exception_again;
430 template<
typename _Tp,
typename _Alloc>
431 #if __cplusplus >= 201103L
432 template<
typename... _Args>
442 _M_reserve_map_at_back();
443 *(this->_M_impl._M_finish._M_node + 1) = this->_M_allocate_node();
446 #if __cplusplus >= 201103L
447 this->_M_impl.construct(this->_M_impl._M_finish._M_cur,
448 std::forward<_Args>(__args)...);
450 this->_M_impl.construct(this->_M_impl._M_finish._M_cur, __t);
452 this->_M_impl._M_finish._M_set_node(this->_M_impl._M_finish._M_node
454 this->_M_impl._M_finish._M_cur = this->_M_impl._M_finish._M_first;
458 _M_deallocate_node(*(this->_M_impl._M_finish._M_node + 1));
459 __throw_exception_again;
464 template<
typename _Tp,
typename _Alloc>
465 #if __cplusplus >= 201103L
466 template<
typename... _Args>
476 _M_reserve_map_at_front();
477 *(this->_M_impl._M_start._M_node - 1) = this->_M_allocate_node();
480 this->_M_impl._M_start._M_set_node(this->_M_impl._M_start._M_node
482 this->_M_impl._M_start._M_cur = this->_M_impl._M_start._M_last - 1;
483 #if __cplusplus >= 201103L
484 this->_M_impl.construct(this->_M_impl._M_start._M_cur,
485 std::forward<_Args>(__args)...);
487 this->_M_impl.construct(this->_M_impl._M_start._M_cur, __t);
492 ++this->_M_impl._M_start;
493 _M_deallocate_node(*(this->_M_impl._M_start._M_node - 1));
494 __throw_exception_again;
499 template <
typename _Tp,
typename _Alloc>
503 _M_deallocate_node(this->_M_impl._M_finish._M_first);
504 this->_M_impl._M_finish._M_set_node(this->_M_impl._M_finish._M_node - 1);
505 this->_M_impl._M_finish._M_cur = this->_M_impl._M_finish._M_last - 1;
506 this->_M_impl.destroy(this->_M_impl._M_finish._M_cur);
514 template <
typename _Tp,
typename _Alloc>
518 this->_M_impl.destroy(this->_M_impl._M_start._M_cur);
519 _M_deallocate_node(this->_M_impl._M_start._M_first);
520 this->_M_impl._M_start._M_set_node(this->_M_impl._M_start._M_node + 1);
521 this->_M_impl._M_start._M_cur = this->_M_impl._M_start._M_first;
524 template <
typename _Tp,
typename _Alloc>
525 template <
typename _InputIterator>
529 _InputIterator __first, _InputIterator __last,
533 template <
typename _Tp,
typename _Alloc>
534 template <
typename _ForwardIterator>
537 _M_range_insert_aux(iterator __pos,
538 _ForwardIterator __first, _ForwardIterator __last,
542 if (__pos._M_cur == this->_M_impl._M_start._M_cur)
544 iterator __new_start = _M_reserve_elements_at_front(__n);
547 std::__uninitialized_copy_a(__first, __last, __new_start,
548 _M_get_Tp_allocator());
549 this->_M_impl._M_start = __new_start;
553 _M_destroy_nodes(__new_start._M_node,
554 this->_M_impl._M_start._M_node);
555 __throw_exception_again;
558 else if (__pos._M_cur == this->_M_impl._M_finish._M_cur)
560 iterator __new_finish = _M_reserve_elements_at_back(__n);
563 std::__uninitialized_copy_a(__first, __last,
564 this->_M_impl._M_finish,
565 _M_get_Tp_allocator());
566 this->_M_impl._M_finish = __new_finish;
570 _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1,
571 __new_finish._M_node + 1);
572 __throw_exception_again;
576 _M_insert_aux(__pos, __first, __last, __n);
579 template<
typename _Tp,
typename _Alloc>
580 #if __cplusplus >= 201103L
581 template<
typename... _Args>
582 typename deque<_Tp, _Alloc>::iterator
584 _M_insert_aux(iterator __pos, _Args&&... __args)
586 value_type __x_copy(std::forward<_Args>(__args)...);
588 typename deque<_Tp, _Alloc>::iterator
590 _M_insert_aux(iterator __pos,
const value_type& __x)
592 value_type __x_copy = __x;
594 difference_type __index = __pos - this->_M_impl._M_start;
595 if (static_cast<size_type>(__index) <
size() / 2)
597 push_front(_GLIBCXX_MOVE(front()));
598 iterator __front1 = this->_M_impl._M_start;
600 iterator __front2 = __front1;
602 __pos = this->_M_impl._M_start + __index;
603 iterator __pos1 = __pos;
605 _GLIBCXX_MOVE3(__front2, __pos1, __front1);
609 push_back(_GLIBCXX_MOVE(back()));
610 iterator __back1 = this->_M_impl._M_finish;
612 iterator __back2 = __back1;
614 __pos = this->_M_impl._M_start + __index;
615 _GLIBCXX_MOVE_BACKWARD3(__pos, __back2, __back1);
617 *__pos = _GLIBCXX_MOVE(__x_copy);
621 template <
typename _Tp,
typename _Alloc>
624 _M_insert_aux(iterator __pos, size_type __n,
const value_type& __x)
626 const difference_type __elems_before = __pos - this->_M_impl._M_start;
627 const size_type __length = this->
size();
628 value_type __x_copy = __x;
629 if (__elems_before < difference_type(__length / 2))
631 iterator __new_start = _M_reserve_elements_at_front(__n);
632 iterator __old_start = this->_M_impl._M_start;
633 __pos = this->_M_impl._M_start + __elems_before;
636 if (__elems_before >= difference_type(__n))
638 iterator __start_n = (this->_M_impl._M_start
639 + difference_type(__n));
640 std::__uninitialized_move_a(this->_M_impl._M_start,
641 __start_n, __new_start,
642 _M_get_Tp_allocator());
643 this->_M_impl._M_start = __new_start;
644 _GLIBCXX_MOVE3(__start_n, __pos, __old_start);
645 std::fill(__pos - difference_type(__n), __pos, __x_copy);
649 std::__uninitialized_move_fill(this->_M_impl._M_start,
651 this->_M_impl._M_start,
653 _M_get_Tp_allocator());
654 this->_M_impl._M_start = __new_start;
655 std::fill(__old_start, __pos, __x_copy);
660 _M_destroy_nodes(__new_start._M_node,
661 this->_M_impl._M_start._M_node);
662 __throw_exception_again;
667 iterator __new_finish = _M_reserve_elements_at_back(__n);
668 iterator __old_finish = this->_M_impl._M_finish;
669 const difference_type __elems_after =
670 difference_type(__length) - __elems_before;
671 __pos = this->_M_impl._M_finish - __elems_after;
674 if (__elems_after > difference_type(__n))
676 iterator __finish_n = (this->_M_impl._M_finish
677 - difference_type(__n));
678 std::__uninitialized_move_a(__finish_n,
679 this->_M_impl._M_finish,
680 this->_M_impl._M_finish,
681 _M_get_Tp_allocator());
682 this->_M_impl._M_finish = __new_finish;
683 _GLIBCXX_MOVE_BACKWARD3(__pos, __finish_n, __old_finish);
684 std::fill(__pos, __pos + difference_type(__n), __x_copy);
688 std::__uninitialized_fill_move(this->_M_impl._M_finish,
689 __pos + difference_type(__n),
691 this->_M_impl._M_finish,
692 _M_get_Tp_allocator());
693 this->_M_impl._M_finish = __new_finish;
694 std::fill(__pos, __old_finish, __x_copy);
699 _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1,
700 __new_finish._M_node + 1);
701 __throw_exception_again;
706 template <
typename _Tp,
typename _Alloc>
707 template <
typename _ForwardIterator>
710 _M_insert_aux(iterator __pos,
711 _ForwardIterator __first, _ForwardIterator __last,
714 const difference_type __elemsbefore = __pos - this->_M_impl._M_start;
715 const size_type __length =
size();
716 if (static_cast<size_type>(__elemsbefore) < __length / 2)
718 iterator __new_start = _M_reserve_elements_at_front(__n);
719 iterator __old_start = this->_M_impl._M_start;
720 __pos = this->_M_impl._M_start + __elemsbefore;
723 if (__elemsbefore >= difference_type(__n))
725 iterator __start_n = (this->_M_impl._M_start
726 + difference_type(__n));
727 std::__uninitialized_move_a(this->_M_impl._M_start,
728 __start_n, __new_start,
729 _M_get_Tp_allocator());
730 this->_M_impl._M_start = __new_start;
731 _GLIBCXX_MOVE3(__start_n, __pos, __old_start);
732 std::copy(__first, __last, __pos - difference_type(__n));
736 _ForwardIterator __mid = __first;
737 std::advance(__mid, difference_type(__n) - __elemsbefore);
738 std::__uninitialized_move_copy(this->_M_impl._M_start,
739 __pos, __first, __mid,
741 _M_get_Tp_allocator());
742 this->_M_impl._M_start = __new_start;
743 std::copy(__mid, __last, __old_start);
748 _M_destroy_nodes(__new_start._M_node,
749 this->_M_impl._M_start._M_node);
750 __throw_exception_again;
755 iterator __new_finish = _M_reserve_elements_at_back(__n);
756 iterator __old_finish = this->_M_impl._M_finish;
757 const difference_type __elemsafter =
758 difference_type(__length) - __elemsbefore;
759 __pos = this->_M_impl._M_finish - __elemsafter;
762 if (__elemsafter > difference_type(__n))
764 iterator __finish_n = (this->_M_impl._M_finish
765 - difference_type(__n));
766 std::__uninitialized_move_a(__finish_n,
767 this->_M_impl._M_finish,
768 this->_M_impl._M_finish,
769 _M_get_Tp_allocator());
770 this->_M_impl._M_finish = __new_finish;
771 _GLIBCXX_MOVE_BACKWARD3(__pos, __finish_n, __old_finish);
772 std::copy(__first, __last, __pos);
776 _ForwardIterator __mid = __first;
778 std::__uninitialized_copy_move(__mid, __last, __pos,
779 this->_M_impl._M_finish,
780 this->_M_impl._M_finish,
781 _M_get_Tp_allocator());
782 this->_M_impl._M_finish = __new_finish;
783 std::copy(__first, __mid, __pos);
788 _M_destroy_nodes(this->_M_impl._M_finish._M_node + 1,
789 __new_finish._M_node + 1);
790 __throw_exception_again;
795 template<
typename _Tp,
typename _Alloc>
798 _M_destroy_data_aux(iterator __first, iterator __last)
800 for (_Map_pointer __node = __first._M_node + 1;
801 __node < __last._M_node; ++__node)
803 _M_get_Tp_allocator());
805 if (__first._M_node != __last._M_node)
808 _M_get_Tp_allocator());
810 _M_get_Tp_allocator());
814 _M_get_Tp_allocator());
817 template <
typename _Tp,
typename _Alloc>
822 if (this->max_size() - this->
size() < __new_elems)
823 __throw_length_error(__N(
"deque::_M_new_elements_at_front"));
825 const size_type __new_nodes = ((__new_elems + _S_buffer_size() - 1)
827 _M_reserve_map_at_front(__new_nodes);
831 for (__i = 1; __i <= __new_nodes; ++__i)
832 *(this->_M_impl._M_start._M_node - __i) = this->_M_allocate_node();
836 for (size_type __j = 1; __j < __i; ++__j)
837 _M_deallocate_node(*(this->_M_impl._M_start._M_node - __j));
838 __throw_exception_again;
842 template <
typename _Tp,
typename _Alloc>
847 if (this->max_size() - this->
size() < __new_elems)
848 __throw_length_error(__N(
"deque::_M_new_elements_at_back"));
850 const size_type __new_nodes = ((__new_elems + _S_buffer_size() - 1)
852 _M_reserve_map_at_back(__new_nodes);
856 for (__i = 1; __i <= __new_nodes; ++__i)
857 *(this->_M_impl._M_finish._M_node + __i) = this->_M_allocate_node();
861 for (size_type __j = 1; __j < __i; ++__j)
862 _M_deallocate_node(*(this->_M_impl._M_finish._M_node + __j));
863 __throw_exception_again;
867 template <
typename _Tp,
typename _Alloc>
872 const size_type __old_num_nodes
873 = this->_M_impl._M_finish._M_node - this->_M_impl._M_start._M_node + 1;
874 const size_type __new_num_nodes = __old_num_nodes + __nodes_to_add;
876 _Map_pointer __new_nstart;
877 if (this->_M_impl._M_map_size > 2 * __new_num_nodes)
879 __new_nstart = this->_M_impl._M_map + (this->_M_impl._M_map_size
880 - __new_num_nodes) / 2
881 + (__add_at_front ? __nodes_to_add : 0);
882 if (__new_nstart < this->_M_impl._M_start._M_node)
883 std::copy(this->_M_impl._M_start._M_node,
884 this->_M_impl._M_finish._M_node + 1,
887 std::copy_backward(this->_M_impl._M_start._M_node,
888 this->_M_impl._M_finish._M_node + 1,
889 __new_nstart + __old_num_nodes);
893 size_type __new_map_size = this->_M_impl._M_map_size
894 +
std::max(this->_M_impl._M_map_size,
897 _Map_pointer __new_map = this->_M_allocate_map(__new_map_size);
898 __new_nstart = __new_map + (__new_map_size - __new_num_nodes) / 2
899 + (__add_at_front ? __nodes_to_add : 0);
900 std::copy(this->_M_impl._M_start._M_node,
901 this->_M_impl._M_finish._M_node + 1,
903 _M_deallocate_map(this->_M_impl._M_map, this->_M_impl._M_map_size);
905 this->_M_impl._M_map = __new_map;
906 this->_M_impl._M_map_size = __new_map_size;
909 this->_M_impl._M_start._M_set_node(__new_nstart);
910 this->_M_impl._M_finish._M_set_node(__new_nstart + __old_num_nodes - 1);
915 template<
typename _Tp>
922 for (
typename _Self::_Map_pointer __node = __first._M_node + 1;
923 __node < __last._M_node; ++__node)
924 std::fill(*__node, *__node + _Self::_S_buffer_size(), __value);
926 if (__first._M_node != __last._M_node)
928 std::fill(__first._M_cur, __first._M_last, __value);
929 std::fill(__last._M_first, __last._M_cur, __value);
932 std::fill(__first._M_cur, __last._M_cur, __value);
935 template<
typename _Tp>
936 _Deque_iterator<_Tp, _Tp&, _Tp*>
937 copy(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first,
938 _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last,
939 _Deque_iterator<_Tp, _Tp&, _Tp*> __result)
941 typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self;
942 typedef typename _Self::difference_type difference_type;
944 difference_type __len = __last - __first;
947 const difference_type __clen
949 __result._M_last - __result._M_cur));
950 std::copy(__first._M_cur, __first._M_cur + __clen, __result._M_cur);
958 template<
typename _Tp>
959 _Deque_iterator<_Tp, _Tp&, _Tp*>
960 copy_backward(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first,
961 _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last,
962 _Deque_iterator<_Tp, _Tp&, _Tp*> __result)
964 typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self;
965 typedef typename _Self::difference_type difference_type;
967 difference_type __len = __last - __first;
970 difference_type __llen = __last._M_cur - __last._M_first;
971 _Tp* __lend = __last._M_cur;
973 difference_type __rlen = __result._M_cur - __result._M_first;
974 _Tp* __rend = __result._M_cur;
978 __llen = _Self::_S_buffer_size();
979 __lend = *(__last._M_node - 1) + __llen;
983 __rlen = _Self::_S_buffer_size();
984 __rend = *(__result._M_node - 1) + __rlen;
987 const difference_type __clen =
std::min(__len,
989 std::copy_backward(__lend - __clen, __lend, __rend);
997 #if __cplusplus >= 201103L
998 template<
typename _Tp>
999 _Deque_iterator<_Tp, _Tp&, _Tp*>
1000 move(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first,
1001 _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last,
1002 _Deque_iterator<_Tp, _Tp&, _Tp*> __result)
1004 typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self;
1005 typedef typename _Self::difference_type difference_type;
1007 difference_type __len = __last - __first;
1010 const difference_type __clen
1012 __result._M_last - __result._M_cur));
1013 std::move(__first._M_cur, __first._M_cur + __clen, __result._M_cur);
1021 template<
typename _Tp>
1022 _Deque_iterator<_Tp, _Tp&, _Tp*>
1023 move_backward(_Deque_iterator<_Tp, const _Tp&, const _Tp*> __first,
1024 _Deque_iterator<_Tp, const _Tp&, const _Tp*> __last,
1025 _Deque_iterator<_Tp, _Tp&, _Tp*> __result)
1027 typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self;
1028 typedef typename _Self::difference_type difference_type;
1030 difference_type __len = __last - __first;
1033 difference_type __llen = __last._M_cur - __last._M_first;
1034 _Tp* __lend = __last._M_cur;
1036 difference_type __rlen = __result._M_cur - __result._M_first;
1037 _Tp* __rend = __result._M_cur;
1041 __llen = _Self::_S_buffer_size();
1042 __lend = *(__last._M_node - 1) + __llen;
1046 __rlen = _Self::_S_buffer_size();
1047 __rend = *(__result._M_node - 1) + __rlen;
1050 const difference_type __clen =
std::min(__len,
1052 std::move_backward(__lend - __clen, __lend, __rend);
1061 _GLIBCXX_END_NAMESPACE_CONTAINER