Lines Matching refs:parent_task
1461 kmp_taskdata_t *parent_task = thread->th.th_current_task; local
1482 KMP_DEBUG_ASSERT(parent_task);
1483 if (parent_task->td_flags.final) {
1587 taskdata->td_parent = parent_task;
1588 taskdata->td_level = parent_task->td_level + 1; // increment nesting level
1622 (parent_task->td_flags.final || taskdata->td_flags.team_serial ||
1636 parent_task->td_taskgroup; // task inherits taskgroup from the parent task
1652 KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
1653 if (parent_task->td_taskgroup)
1654 KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
2063 tdg->record_map[new_taskdata->td_task_id].parent_task =
4669 kmp_taskdata_t *parent_task = taskdata_src->td_parent; // same parent task local
4709 taskdata->td_parent = parent_task;
4711 taskdata->td_taskgroup = parent_task->td_taskgroup;
4720 KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks);
4721 if (parent_task->td_taskgroup)
4722 KMP_ATOMIC_INC(&parent_task->td_taskgroup->count);
5533 kmp_taskdata_t *parent_task = thread->th.th_current_task; local
5542 td->td_parent = parent_task;
5543 this_record_map[j].parent_task = parent_task;
5546 this_record_map[j].parent_task->td_taskgroup;
5550 KMP_ATOMIC_INC(&this_record_map[j].parent_task->td_incomplete_child_tasks);
5560 if (this_record_map[j].parent_task->td_flags.tasktype == TASK_EXPLICIT)
5561 KMP_ATOMIC_INC(&this_record_map[j].parent_task->td_allocated_child_tasks);