Home
last modified time | relevance | path

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

/oneTBB/test/tbb/
H A Dtest_flow_graph_priorities.cpp424 void do_node_work( int work_size );
444 void do_node_work(int work_size) { in do_node_work() argument
445 tbb::parallel_for( tbb::blocked_range<int>(0, work_size), CommonBody<work_type>(), in do_node_work()
465 int work_size; member
466 IsolationFunctor(int ws) : work_size(ws) {} in IsolationFunctor()
468 tbb::parallel_for( tbb::blocked_range<int>(0, work_size), CommonBody<PRIORITIZED_WORK>(), in operator ()()
474 void do_node_work<PRIORITIZED_WORK>(int work_size) { in do_node_work() argument
477 tbb::this_task_arena::isolate( IsolationFunctor(work_size) ); in do_node_work()