Searched refs:cq (Results 1 – 2 of 2) sorted by relevance
1392 CQ cq; in TestEmplaceInQueue() local1395 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 …]
63 tbb::concurrent_queue<std::size_t> cq; variable