reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_csupport.cpp
  433   kmp_cg_root_t *tmp = this_thr->th.th_cg_roots;
  434   this_thr->th.th_cg_roots = tmp->up;
  446       this_thr->th.th_cg_roots->cg_thread_limit;
projects/openmp/runtime/src/kmp_runtime.cpp
  872   int cg_nthreads = this_thr->th.th_cg_roots->cg_nthreads;
  873   int max_cg_threads = this_thr->th.th_cg_roots->cg_thread_limit;
 3790   root_thread->th.th_cg_roots = tmp;
 3915   i = root->r.r_uber_thread->th.th_cg_roots->cg_nthreads--;
 3925     __kmp_free(root->r.r_uber_thread->th.th_cg_roots);
 3926     root->r.r_uber_thread->th.th_cg_roots = NULL;
 4098       this_thr->th.th_cg_roots != master->th.th_cg_roots) { // CG root not set
 4098       this_thr->th.th_cg_roots != master->th.th_cg_roots) { // CG root not set
 4101     kmp_cg_root_t *tmp = this_thr->th.th_cg_roots;
 4112     this_thr->th.th_cg_roots = master->th.th_cg_roots;
 4112     this_thr->th.th_cg_roots = master->th.th_cg_roots;
 4114     this_thr->th.th_cg_roots->cg_nthreads++;
 4121         this_thr->th.th_cg_roots->cg_thread_limit;
 5466     if (team->t.t_threads[1]->th.th_cg_roots->cg_root == team->t.t_threads[1]) {
 5473         kmp_cg_root_t *tmp = thr->th.th_cg_roots;
 5474         thr->th.th_cg_roots = tmp->up;
 5483         if (thr->th.th_cg_roots)
 5485               thr->th.th_cg_roots->cg_thread_limit;
 5567   while (this_th->th.th_cg_roots) {
 5568     this_th->th.th_cg_roots->cg_nthreads--;
 5574     kmp_cg_root_t *tmp = this_th->th.th_cg_roots;
 5579       this_th->th.th_cg_roots = tmp->up;
 5585       this_th->th.th_cg_roots = NULL;
 7102   tmp->up = thr->th.th_cg_roots;
 7103   thr->th.th_cg_roots = tmp;