Lines Matching refs:control
121 U operator()( tbb::flow_control& control ) const { in operator ()()
124 control.stop(); in operator ()()
137 U* operator()(tbb::flow_control& control) const { in operator ()()
141 control.stop(); in operator ()()
160 void operator()( tbb::flow_control& control ) const { in operator ()()
163 control.stop(); in operator ()()
176 operator()(tbb::flow_control& control ) const { in operator ()()
180 control.stop(); in operator ()()
406 tbb::filter<void, void>(filter_table[i], [&counter]( tbb::flow_control& control ) { in run_function_spec() argument
408 control.stop(); in run_function_spec()
509 tbb::make_filter<void, t1>(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1 { in run_lambdas_test() argument
511 control.stop(); in run_lambdas_test()
527 tbb::filter<void,t1*>(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1* { in run_lambdas_test() argument
529 control.stop(); in run_lambdas_test()
550 tbb::make_filter(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1* { in run_lambdas_test() argument
552 control.stop(); in run_lambdas_test()
572 tbb::make_filter(filter_type[0], [&counter]( tbb::flow_control& control ) -> t1 { in run_lambdas_test() argument
574 control.stop(); in run_lambdas_test()
664 … tbb::global_control control(tbb::global_control::max_allowed_parallelism, concurrency_level); \