Home
last modified time | relevance | path

Searched refs:a1 (Results 1 – 7 of 7) sorted by relevance

/oneTBB/test/common/
H A Dallocator_test_common.h297 AllocatorFooChar a1(a);
299 AllocatorFooInt b1(a1);
305 REQUIRE(a1 == b1);
310 TestAllocatorConcept<typename AllocatorFooChar::value_type>(a1);
317 TestBrokenAllocator<typename AllocatorFooChar::value_type>(a1);
324 TestAllocatorExceptions<typename AllocatorFooChar::value_type>(a1);
329 TestThreadSafety(a1);
/oneTBB/test/conformance/
H A Dconformance_composite_node.cpp164 adder a1(g);
170 make_edge(output_port<0>(a0),input_port<0>(a1));
171 make_edge(output_port<2>(s), input_port<1>(a1));
173 make_edge(output_port<0>(a1), input_port<0>(a2));
H A Dconformance_concurrent_hash_map.cpp822 YourTable::accessor a1, a2; in apply() local
824 table.insert( a1, MyKey::make(1) ); in apply()
/oneTBB/test/tbb/
H A Dtest_composite_node.cpp209 adder_node a1(g, hidden); in test_adder() local
230 tbb::flow::make_edge( c, tbb::flow::input_port<0>(a1) ); in test_adder()
231 tbb::flow::make_edge( c, tbb::flow::input_port<1>(a1) ); in test_adder()
234 tbb::flow::make_edge( tbb::flow::output_port<0>(a1), tbb::flow::input_port<1>(a2) ); in test_adder()
259 tbb::flow::make_edge( a1, tbb::flow::input_port<1>(a3) ); in test_adder()
H A Dtest_collaborative_call_once.cpp350 tbb::task_arena a1(num_threads), a2(num_threads);
354 a1.enqueue([&] { in __anon8532fc100f02()
H A Dtest_task_arena.cpp185 tbb::task_arena a1; in TestConcurrentArenasFunc() local
186 a1.initialize(1,0); in TestConcurrentArenasFunc()
187 …ArenaObserver o1(a1, 1, 0, idx*2+1); // the last argument is a "unique" observer/arena id for the … in TestConcurrentArenasFunc()
204 a1.enqueue(work); // put async work in TestConcurrentArenasFunc()
214 a1.debug_wait_until_empty(); in TestConcurrentArenasFunc()
H A Dtest_task_group.cpp931 tbb::task_arena a1(2, 1); variable
932 a1.execute([] { in __anoneb262a490802()