Lines Matching refs:team
110 * __kmp_itt_region_forking should be called by primary thread of a team.
112 thread of this team calls __kmp_itt_region_starting.
113 * __kmp_itt_region_starting should be called by each thread of a team just
115 * __kmp_itt_region_finished should be called by each thread of a team right
117 * __kmp_itt_region_joined should be called by primary thread of a team, after
128 kmp_team_t *team = __kmp_team_from_gtid(gtid);
129 if (team->t.t_active_level > 1) {
194 kmp_team_t *team = __kmp_team_from_gtid(gtid);
196 if (team->t.t_active_level + serialized > 1) {
369 kmp_team_t *team = __kmp_team_from_gtid(gtid);
370 if (team->t.t_active_level > 1) {
410 counter in team and thread structures. We could use an address of team
412 different barriers (even whithin the same team). So let us use team address
414 next barrier, and so on (but wrap it not to use addresses outside of team
425 kmp_team_t *team = thr->th.th_team;
427 // NOTE: If the function is called from __kmp_fork_barrier, team pointer can
431 if (team != NULL) {
435 team->t.t_bar[bt].b_arrived / KMP_BARRIER_STATE_BUMP + delta;
444 (kmp_uintptr_t)(team) +
499 // be called yet, so we read the location from team. This is the
502 loc = team->t.t_ident;
833 object. ITT team would like it to be called once, but it requires extra
842 Events are not generated in case of serialized team. */
932 Primary thread calls "create" and put the stitching id into team structure.