Home
last modified time | relevance | path

Searched refs:new_task (Results 1 – 4 of 4) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_cache_impl.h351 graph_task *new_task = (*i)->try_put_task(t); in try_put_task() local
354 last_task = combine_tasks(graph_ref, last_task, new_task); // enqueue if necessary in try_put_task()
355 if(new_task) { in try_put_task()
375 graph_task * new_task = (*i)->try_put_task(t); in gather_successful_try_puts() local
376 if(new_task) { in gather_successful_try_puts()
378 if(new_task != SUCCESSFULLY_ENQUEUED) { in gather_successful_try_puts()
379 tasks.push_back(*new_task); in gather_successful_try_puts()
418 graph_task* new_task = (*i)->try_put_task(t); in try_put_task() local
419 if ( new_task ) { in try_put_task()
420 return new_task; in try_put_task()
H A D_flow_graph_node_impl.h172 graph_task* new_task = nullptr; in perform_queued_requests() local
176 new_task = create_body_task(my_queue->front()); in perform_queued_requests()
185 new_task = create_body_task(i); in perform_queued_requests()
188 return new_task; in perform_queued_requests()
236 graph_task * new_task = create_body_task(*(op->elem)); in internal_try_put_task() local
237 op->bypass_t = new_task; in internal_try_put_task()
H A D_flow_graph_join_impl.h1115 graph_task *new_task = my_successors.try_put_task(out);
1116 last_task = combine_tasks(my_graph, last_task, new_task);
1117 if(new_task) {
/oneTBB/include/oneapi/tbb/
H A Dflow_graph.h1128 graph_task *new_task = my_successors.try_put_task(t); in try_put_task() local
1129 if (!new_task) new_task = SUCCESSFULLY_ENQUEUED; in try_put_task()
1130 return new_task; in try_put_task()
1289 graph_task *new_task = my_successors.try_put_task(this->back()); in try_put_and_add_task() local
1290 if (new_task) { in try_put_and_add_task()
1293 last_task = combine_tasks(g, last_task, new_task); in try_put_and_add_task()
1514 graph_task *new_task = this->my_successors.try_put_task(this->front()); in try_put_and_add_task() local
1515 if (new_task) { in try_put_and_add_task()
1518 last_task = combine_tasks(graph_ref, last_task, new_task); in try_put_and_add_task()
1771 if (new_task) { in try_put_and_add_task()
[all …]