Lines Matching refs:concurrency
55 void buffered_levels( size_t concurrency, Body body ) { in buffered_levels() argument
58 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in buffered_levels()
160 void buffered_levels_with_copy( size_t concurrency ) { in buffered_levels_with_copy() argument
163 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in buffered_levels_with_copy()
251 void concurrency_levels( size_t concurrency, Body body ) { in concurrency_levels() argument
253 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in concurrency_levels()
523 concept can_call_function_node_ctor = requires( tbb::flow::graph& graph, std::size_t concurrency, B…
525 tbb::flow::function_node<Input, Output>(graph, concurrency, body);
526 tbb::flow::function_node<Input, Output>(graph, concurrency, body, priority);
528 tbb::flow::function_node<Input, Output>(tbb::flow::follows(f), concurrency, body);
529 tbb::flow::function_node<Input, Output>(tbb::flow::follows(f), concurrency, body, priority);