Home
last modified time | relevance | path

Searched refs:parent_task (Results 1 – 5 of 5) sorted by relevance

/external/toolchain-utils/bestflags/
Diterative_elimination.py86 def __init__(self, exe_set, parent_task): argument
104 self._parent_task = parent_task
130 parent_task = self._parent_task
133 worst_task = parent_task
135 for curr in [curr for curr in self.Pool() if curr != parent_task]:
141 assert worst_task != parent_task
Dtesting_batch.py223 parent_task = Task(flags.FlagSet(flag_set))
224 results.add(parent_task)
229 return [IterativeEliminationFirstGeneration(results, parent_task)]
/external/libchrome/base/debug/
Dtask_annotator.cc52 const PendingTask* parent_task = GetTLSForCurrentPendingTask()->Get(); in WillQueueTask() local
53 if (parent_task) { in WillQueueTask()
55 parent_task->posted_from.program_counter(); in WillQueueTask()
56 std::copy(parent_task->task_backtrace.begin(), in WillQueueTask()
57 parent_task->task_backtrace.end() - 1, in WillQueueTask()
/external/llvm-project/openmp/runtime/src/
Dkmp_tasking.cpp1175 kmp_taskdata_t *parent_task = thread->th.th_current_task; in __kmp_task_alloc() local
1186 if (parent_task->td_flags.final) { in __kmp_task_alloc()
1286 taskdata->td_parent = parent_task; in __kmp_task_alloc()
1287 taskdata->td_level = parent_task->td_level + 1; // increment nesting level in __kmp_task_alloc()
1319 (parent_task->td_flags.final || taskdata->td_flags.team_serial || in __kmp_task_alloc()
1333 parent_task->td_taskgroup; // task inherits taskgroup from the parent task in __kmp_task_alloc()
1351 KMP_ATOMIC_INC(&parent_task->td_incomplete_child_tasks); in __kmp_task_alloc()
1352 if (parent_task->td_taskgroup) in __kmp_task_alloc()
1353 KMP_ATOMIC_INC(&parent_task->td_taskgroup->count); in __kmp_task_alloc()
3959 kmp_taskdata_t *parent_task = taskdata_src->td_parent; // same parent task in __kmp_task_dup_alloc() local
[all …]
Dkmp_csupport.cpp3844 kmp_taskdata_t *parent_task; in __kmpc_get_parent_taskid() local
3851 parent_task = thread->th.th_current_task->td_parent; in __kmpc_get_parent_taskid()
3852 return (parent_task == NULL ? 0 : parent_task->td_task_id); in __kmpc_get_parent_taskid()