Lines Matching defs:hot_team

993       if (hot_teams[level].hot_team) {
995 KMP_DEBUG_ASSERT(hot_teams[level].hot_team == team);
999 hot_teams[level].hot_team = team; // remember new hot team
1466 (*p_hot_teams)[0].hot_team = root->r.r_hot_team;
2079 team == master_th->th.th_hot_teams[active_level].hot_team) {
2616 kmp_team_t *hot_team = root->r.r_hot_team;
2622 for (f = new_nth; f < hot_team->t.t_nproc; f++) {
2623 KMP_DEBUG_ASSERT(hot_team->t.t_threads[f] != NULL);
2627 hot_team->t.t_threads[f]->th.th_task_team = NULL;
2629 __kmp_free_thread(hot_team->t.t_threads[f]);
2630 hot_team->t.t_threads[f] = NULL;
2632 hot_team->t.t_nproc = new_nth;
2635 KMP_DEBUG_ASSERT(hot_team == thread->th.th_hot_teams[0].hot_team);
2644 KMP_DEBUG_ASSERT(hot_team->t.t_threads[f] != NULL);
2645 hot_team->t.t_threads[f]->th.th_team_nproc = new_nth;
2648 hot_team->t.t_size_changed = -1;
3118 kmp_team_t *hot_team;
3172 KF_TRACE(10, ("__kmp_initialize_root: before hot_team\n"));
3174 hot_team =
3185 KF_TRACE(10, ("__kmp_initialize_root: after hot_team = %p\n", hot_team));
3187 root->r.r_hot_team = hot_team;
3191 hot_team->t.t_parent = root_team;
3194 hot_team_max_nth = hot_team->t.t_max_nproc;
3196 hot_team->t.t_threads[f] = NULL;
3198 hot_team->t.t_nproc = 1;
3199 // TODO???: hot_team->t.t_max_active_levels = __kmp_dflt_max_active_levels;
3200 hot_team->t.t_sched.sched = r_sched.sched;
3201 hot_team->t.t_size_changed = 0;
3802 if (!hot_teams || !hot_teams[level].hot_team) {
3806 kmp_team_t *team = hot_teams[level].hot_team;
3828 kmp_team_t *hot_team = root->r.r_hot_team;
3829 int n = hot_team->t.t_nproc;
3842 for (i = 0; i < hot_team->t.t_nproc; ++i) {
3843 kmp_info_t *th = hot_team->t.t_threads[i];
3854 __kmp_free_team(root, hot_team USE_NESTED_HOT_ARG(NULL));
4880 .hot_team) { // hot team has already been allocated for given level
4891 team = hot_teams[level].hot_team;
5189 KF_TRACE(10, (" hot_team = %p\n", team));
5360 KMP_DEBUG_ASSERT(team == hot_teams[level].hot_team);
7324 kmp_team_t *hot_team;
7329 hot_team = root->r.r_hot_team;
7331 return hot_team->t.t_nproc - 1; // Don't count master thread
7336 for (i = 1; i < hot_team->t.t_nproc; i++) {
7337 if (hot_team->t.t_threads[i]->th.th_active) {