Searched refs:dest_last (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/boost/move/algo/detail/ |
D | merge.hpp | 711 ( BidirOutIterator const first, BidirOutIterator last, BidirOutIterator dest_last in op_merge_with_left_placed() argument 715 BOOST_ASSERT((dest_last - last) == (r_last - r_first)); in op_merge_with_left_placed() 718 BidirOutIterator res = op(backward_t(), r_first, r_last, dest_last); in op_merge_with_left_placed() 727 --dest_last; in op_merge_with_left_placed() 728 op(last, dest_last); in op_merge_with_left_placed() 732 --dest_last; in op_merge_with_left_placed() 733 op(r_last, dest_last); in op_merge_with_left_placed() 744 ( BidirOutIterator const first, BidirOutIterator last, BidirOutIterator dest_last in merge_with_left_placed() argument 748 op_merge_with_left_placed(first, last, dest_last, r_first, r_last, comp, move_op()); in merge_with_left_placed()
|
D | basic_op.hpp | 46 …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 ()()
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | blkmap64_rb.c | 251 struct rb_node *dest_node, *src_node, *dest_last, **n; in rb_copy_bmap() local 276 dest_last = NULL; in rb_copy_bmap() 278 dest_last = ext2fs_rb_last(&dest_bp->root); in rb_copy_bmap() 279 n = &(dest_last)->rb_right; in rb_copy_bmap() 282 ext2fs_rb_link_node(dest_node, dest_last, n); in rb_copy_bmap()
|