Searched refs:to_move (Results 1 – 2 of 2) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | btree.h | 840 void rebalance_right_to_left(int to_move, btree_node *right, 842 void rebalance_left_to_right(int to_move, btree_node *right, 1632 void btree_node<P>::rebalance_right_to_left(const int to_move, 1638 assert(to_move >= 1); 1639 assert(to_move <= right->count()); 1645 transfer_n(to_move - 1, finish() + 1, right->start(), right, alloc); 1648 parent()->transfer(position(), right->start() + to_move - 1, right, alloc); 1651 right->transfer_n(right->count() - to_move, right->start(), 1652 right->start() + to_move, right, alloc); 1656 for (int i = 0; i < to_move; ++i) { [all …]
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | move-optimizer.cc | 272 ParallelMove to_move(local_zone()); in MigrateMoves() local 277 to_move.AddMove(move->source(), move->destination(), code_zone()); in MigrateMoves() 281 if (to_move.empty()) return; in MigrateMoves() 286 CompressMoves(&to_move, dest); in MigrateMoves() 288 for (MoveOperands* m : to_move) { in MigrateMoves()
|