Lines Matching refs:first
328 forward_block_handling_task(Iterator first, std::size_t size,
337 new (task_it++) iteration_task(first, body, feeder_ptr, my_wait_context);
338 ++first;
390 parallel_for_body_wrapper(Iterator first, const Body& body, feeder_impl<Body, Item>* feeder_ptr)
391 : my_first(first), my_body(body), my_feeder_ptr(feeder_ptr) {}
478 …for_each_root_task_base(Iterator first, Iterator last, const Body& body, wait_context& w_context, …
479 … : my_first(first), my_last(last), my_wait_context(w_context), my_execution_context(e_context),
623 void run_parallel_for_each( Iterator first, Iterator last, const Body& body, task_group_context& co…
625 if (!(first == last)) {
629 … for_each_root_task<Iterator, Body, ItemType> root_task(first, last, body, w_context, context);
661 void parallel_for_each(Iterator first, Iterator last, const Body& body) {
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);