Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp1392 CQ cq; in TestEmplaceInQueue() local
1395 emplacer<emplace_op>::emplace( cq, 5 ); in TestEmplaceInQueue()
1396 CHECK(cq.size() == 1); in TestEmplaceInQueue()
1398 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
1404 CHECK(cq.empty()); in TestEmplaceInQueue()
1408 emplacer<emplace_op>::emplace( cq, std::string(test_str) ); in TestEmplaceInQueue()
1409 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
1415 CHECK(cq.empty()); in TestEmplaceInQueue()
1419 emplacer<emplace_op>::emplace( cq, 5, std::string(test_str) ); in TestEmplaceInQueue()
1420 bool result = cq.try_pop( popped ); in TestEmplaceInQueue()
[all …]
/oneTBB/test/tbb/
H A Dtest_hw_concurrency.cpp63 tbb::concurrent_queue<std::size_t> cq; variable