Home | History | Annotate | Download | only in include

Lines Matching full:__end1

1544         __construct_forward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __begin2)
1546 for (; __begin1 != __end1; ++__begin1, ++__begin2)
1560 __construct_forward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
1562 ptrdiff_t _Np = __end1 - __begin1;
1574 __construct_range_forward(allocator_type& __a, _Iter __begin1, _Iter __end1, _Ptr& __begin2)
1576 for (; __begin1 != __end1; ++__begin1, (void) ++__begin2)
1590 __construct_range_forward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
1593 ptrdiff_t _Np = __end1 - __begin1;
1605 __construct_backward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __end2)
1607 while (__end1 != __begin1)
1609 construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1));
1624 __construct_backward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __end2)
1626 ptrdiff_t _Np = __end1 - __begin1;