Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_concurrent_priority_queue.cpp155 std::size_t& mact = MoveOperationTracker::move_assign_called_times; in init() local
156 mcct = ccct = cact = mact = 0; in init()
327 std::size_t& mact = MoveOperationTracker::move_assign_called_times; in test_move_support_in_push_pop() local
328 mcct = ccct = cact = mact = 0; in test_move_support_in_push_pop()
346 const std::size_t prev_mact = mact; in test_move_support_in_push_pop()
349 REQUIRE_MESSAGE(mact > prev_mact, "Move assignment was not called during try_pop(T&)"); in test_move_support_in_push_pop()
H A Dconformance_concurrent_queue.cpp1176 std::size_t &mact = MoveOperationTracker::move_assignment_called_times; in TestMoveSupport() local
1177 mcct = ccct = cact = mact = 0; in TestMoveSupport()
1193 REQUIRE_MESSAGE(mact == 0, "Move assignment called during push(T&&) or try_push(T&&)"); in TestMoveSupport()
1198 REQUIRE_MESSAGE(mact == 1, "Move assignment was not called during try_pop(T&&)"); in TestMoveSupport()