Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_parallel_for.cpp53 static std::atomic<int> FooBodyCount; variable
88 --FooBodyCount; in ~FooBody()
94 ++FooBodyCount; in FooBody()
163 FooBodyCount = 1; in Flog()
190 CHECK(FooBodyCount == 1); in Flog()
/oneTBB/test/tbb/
H A Dtest_parallel_reduce.cpp447 static std::atomic<long> FooBodyCount; variable
479 FooBody() {++FooBodyCount;} in FooBody()
484 --FooBodyCount; in ~FooBody()
487 ++FooBodyCount; in FooBody()
532 REQUIRE_MESSAGE( FooBodyCount==1, "Wrong initial BodyCount value" ); in TestSplitting()
537 REQUIRE_MESSAGE( FooBodyCount==1, "Some copies of FooBody was not removed after reduction"); in TestSplitting()