Home
last modified time | relevance | path

Searched refs:alive (Results 1 – 4 of 4) sorted by relevance

/oneTBB/test/common/
H A Dutils.h321 Movable() : alive(true) {}
322 void Reset() { alive = true; }
324 CHECK_MESSAGE(other.alive, "Moving from a dead object");
325 alive = true;
326 other.alive = false;
329 CHECK_MESSAGE(alive, "Assignment to a dead object");
331 other.alive = false;
335 CHECK_MESSAGE(alive, "Assignment to a dead object");
341 alive = true;
343 ~Movable() { alive = false; }
[all …]
H A Dparallel_for_each_common.h355 REQUIRE_MESSAGE(in.alive, "Got dead object in body"); in RecordAndAdd()
/oneTBB/test/tbb/
H A Dtest_task_arena.cpp1209 REQUIRE_MESSAGE(mpf.alive, "object was moved when was passed by lval"); in TestFunctors()
1212 REQUIRE_MESSAGE(!mpf.alive, "object was copied when was passed by rval"); in TestFunctors()
1578 alive, enumerator
1585 std::atomic<arena_status> status{alive};
1638 if (curr_arena->status == arena_handler::alive) { in StressTestMixFunctionality()
1663 arena_handler::arena_status curr_status = arena_handler::alive; in StressTestMixFunctionality()
H A Dtest_task_group.cpp680 CHECK_MESSAGE(mpf.alive, "object was moved when was passed by lval"); in TestBareFunctors()
685 CHECK_MESSAGE(!mpf.alive, "object was copied when was passed by rval"); in TestBareFunctors()