Lines Matching refs:parent_task
1465 kmp_taskdata_t *parent_task = thread->th.th_current_task; local
1486 KMP_DEBUG_ASSERT(parent_task);
1487 if (parent_task->td_flags.final) {
1590 taskdata->td_parent = parent_task;
1591 taskdata->td_level = parent_task->td_level + 1; // increment nesting level
1625 (parent_task->td_flags.final || taskdata->td_flags.team_serial ||
1639 parent_task->td_taskgroup; // task inherits taskgroup from the parent task
1655 KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
1656 if (parent_task->td_taskgroup)
1657 KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
2073 tdg->record_map[new_taskdata->td_task_id].parent_task =
4675 kmp_taskdata_t *parent_task = taskdata_src->td_parent; // same parent task local
4715 taskdata->td_parent = parent_task;
4717 taskdata->td_taskgroup = parent_task->td_taskgroup;
4726 KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
4727 if (parent_task->td_taskgroup)
4728 KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
5539 kmp_taskdata_t *parent_task = thread->th.th_current_task; local
5548 td->td_parent = parent_task;
5549 this_record_map[j].parent_task = parent_task;
5552 this_record_map[j].parent_task->td_taskgroup;
5556 KMP_ATOMIC_INC(&this_record_map[j].parent_task->td_incomplete_child_tasks);
5566 if (this_record_map[j].parent_task->td_flags.tasktype == TASK_EXPLICIT)
5567 KMP_ATOMIC_INC(&this_record_map[j].parent_task->td_allocated_child_tasks);