Home
last modified time | relevance | path

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

/oneTBB/test/tbb/
H A Dtest_semaphore.cpp36 std::atomic<int> pCount; variable
56 pCount = 0; in Body()
69 int curval = ++pCount; in operator ()()
74 --pCount; in operator ()()
75 REQUIRE(int(pCount) >= 0); in operator ()()
91 pCount = 0; in test_semaphore()
93 REQUIRE_MESSAGE(!pCount, "not all threads decremented pCount"); in test_semaphore()
/oneTBB/examples/graph/dining_philosophers/
H A Ddining_philosophers.cpp86 std::string pCount = "how many philosophers, from 2-"; in ParseCommandLine() local
87 pCount += charbuf; in ParseCommandLine()
91 .positional_arg(nPhilosophers, "n-of-philosophers", pCount) in ParseCommandLine()