Lines Matching refs:context
196 feeder_impl(const Body& body, wait_context& w_context, task_group_context &context) in feeder_impl() argument
199 , my_execution_context(context) in feeder_impl()
467 feeder_holder( wait_context& w_context, task_group_context& context, const Body& body )
468 : my_feeder(body, w_context, context) {}
623 …un_parallel_for_each( Iterator first, Iterator last, const Body& body, task_group_context& context)
629 … for_each_root_task<Iterator, Body, ItemType> root_task(first, last, body, w_context, context);
631 execute_and_wait(root_task, context, w_context, context);
662 task_group_context context(PARALLEL_FOR_EACH);
663 run_parallel_for_each<Iterator, Body>(first, last, body, context);
682 void parallel_for_each(Iterator first, Iterator last, const Body& body, task_group_context& context…
683 run_parallel_for_each<Iterator, Body>(first, last, body, context);
688 void parallel_for_each(Range& rng, const Body& body, task_group_context& context) {
689 parallel_for_each(std::begin(rng), std::end(rng), body, context);
694 void parallel_for_each(const Range& rng, const Body& body, task_group_context& context) {
695 parallel_for_each(std::begin(rng), std::end(rng), body, context);