Lines Matching defs:nested_nth
1313 kmp_nested_nthreads_t *nested_nth = &__kmp_nested_nth;
1315 nested_nth = this_thr->th.th_team->t.t_nested_nth;
1316 if (nested_nth->used && (level + 1 < nested_nth->used)) {
1317 this_thr->th.th_current_task->td_icvs.nproc = nested_nth->nth[level + 1];
1369 kmp_nested_nthreads_t *nested_nth = &__kmp_nested_nth;
1371 nested_nth = serial_team->t.t_nested_nth;
1372 if (nested_nth->used && (level + 1 < nested_nth->used)) {
1373 this_thr->th.th_current_task->td_icvs.nproc = nested_nth->nth[level + 1];
2126 kmp_nested_nthreads_t *nested_nth = NULL;
2132 nested_nth = __kmp_override_nested_nth(master_th, level);
2133 if ((level + 1 < nested_nth->used) &&
2134 (nested_nth->nth[level + 1] != nthreads_icv))
2135 nthreads_icv = nested_nth->nth[level + 1];
2255 if (!nested_nth)
2256 nested_nth = __kmp_override_nested_nth(master_th, level);
2257 team->t.t_nested_nth = nested_nth;
5751 // Before clearing parent pointer, check if nested_nth list should be freed