Searched refs:move_count (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/pstl/test/std/algorithms/alg.modifying.operations/ |
D | rotate.pass.cpp | 26 int move_count; member 27 explicit wrapper(T t_) : t(t_), move_count(0) {} in wrapper() 35 wrapper(const wrapper<T>& a) : move_count(0) { t = a.t; } in wrapper() 48 move_count += 1; in operator =() 123 bool temp = a.move_count > 0; in check_move() 124 a.move_count = 0; in check_move()
|
/external/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.swap/ |
D | swap.pass.cpp | 171 int move_count; member 172 ThrowsOnSecondMove(int v) : value(v), move_count(0) {} in ThrowsOnSecondMove() 174 : value(o.value), move_count(o.move_count + 1) { in ThrowsOnSecondMove() 175 if (move_count == 2) in ThrowsOnSecondMove() 411 assert(std::get<0>(v2).move_count == 1); in test_swap_different_alternatives()
|
/external/libcxx/test/std/utilities/variant/variant.variant/variant.swap/ |
D | swap.pass.cpp | 174 int move_count; member 175 ThrowsOnSecondMove(int v) : value(v), move_count(0) {} in ThrowsOnSecondMove() 177 : value(o.value), move_count(o.move_count + 1) { in ThrowsOnSecondMove() 178 if (move_count == 2) in ThrowsOnSecondMove() 414 assert(std::get<0>(v2).move_count == 1); in test_swap_different_alternatives()
|
/external/llvm-project/pstl/test/support/ |
D | utils.h | 1173 ++move_count; 1186 ++move_count; 1212 if (move_count > 0) 1214 --move_count; 1230 return move_count; 1240 move_count = n; 1245 static std::atomic<size_t> move_count; 1253 std::atomic<size_t> Wrapper<T>::move_count = {0};
|
/external/webrtc/rtc_base/ |
D | thread_unittest.cc | 856 size_t move_count = 0; member 873 ++stats_->move_count; in operator =() 939 EXPECT_EQ(0u, stats.move_count); in TEST() 953 EXPECT_EQ(1u, stats.move_count); in TEST() 968 EXPECT_EQ(0u, stats.move_count); in TEST()
|
/external/squashfs-tools/squashfs-tools/ |
D | action.c | 65 static int move_count = 0; variable 571 spec_count = move_count ++; in parse_action() 1570 return move_count; in move_actions() 1784 for (i = 0; i < move_count; i++) { in eval_move_actions() 3197 dump_action_list(move_spec, move_count); in dump_actions()
|
/external/sonivox/jet_tools/JetCreator/ |
D | midifile.py | 911 move_count = 0 926 move_count += 1 929 …midi_file_logger.debug('DeleteEvents: moved %d events in range(%s:%s)' % (move_count, start_index,…
|