Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/algo/detail/
H A Dmerge.hpp438 ( BidirOutIterator const first, BidirOutIterator last, BidirOutIterator dest_last in op_merge_with_left_placed() argument
442 BOOST_ASSERT((dest_last - last) == (r_last - r_first)); in op_merge_with_left_placed()
445 BidirOutIterator res = op(backward_t(), r_first, r_last, dest_last); in op_merge_with_left_placed()
454 --dest_last; in op_merge_with_left_placed()
455 op(last, dest_last); in op_merge_with_left_placed()
459 --dest_last; in op_merge_with_left_placed()
460 op(r_last, dest_last); in op_merge_with_left_placed()
471 ( BidirOutIterator const first, BidirOutIterator last, BidirOutIterator dest_last in merge_with_left_placed() argument
475 op_merge_with_left_placed(first, last, dest_last, r_first, r_last, comp, move_op()); in merge_with_left_placed()
H A Dbasic_op.hpp46 …INLINE DestinationIt operator()(backward_t, SourceIt first, SourceIt last, DestinationIt dest_last) in operator ()()
47 { return ::boost::move_backward(first, last, dest_last); } in operator ()()