Lines Matching refs:concurrency
54 void buffered_levels( size_t concurrency, Body body ) { in buffered_levels() argument
57 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in buffered_levels()
151 void buffered_levels_with_copy( size_t concurrency ) { in buffered_levels_with_copy() argument
154 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in buffered_levels_with_copy()
238 void concurrency_levels( size_t concurrency, Body body ) { in concurrency_levels() argument
240 for ( size_t lc = 1; lc <= concurrency; ++lc ) { in concurrency_levels()
602 …ll_multifunction_node_ctor = requires( tbb::flow::graph& graph, std::size_t concurrency, Body body,
604 tbb::flow::multifunction_node<Input, Output>(graph, concurrency, body);
605 tbb::flow::multifunction_node<Input, Output>(graph, concurrency, body, priority);
607 tbb::flow::multifunction_node<Input, Output>(tbb::flow::follows(f), concurrency, body);
608 … tbb::flow::multifunction_node<Input, Output>(tbb::flow::follows(f), concurrency, body, priority);