Lines Matching defs:orig_teams
3012 intptr_t orig_teams = 1, orig_threads = 0;
3034 orig_teams = val;
3044 intptr_t new_teams = orig_teams, new_threads = orig_threads;
3045 /* ORIG_TEAMS == -2: No explicit teams construct specified. Set to 1.
3046 ORIG_TEAMS == -1: TEAMS construct with NUM_TEAMS clause specified, but the
3048 ORIG_TEAMS == 0: TEAMS construct without NUM_TEAMS clause.
3050 ORIG_TEAMS > 0: Value was already set through e.g. NUM_TEAMS clause.
3052 if (orig_teams == -2)
3054 else if (orig_teams == 0)
3061 region exists, i.e. ORIG_TEAMS > -2, and (b) THREADS was not already set by
3063 if (orig_teams > -2 && orig_threads == 0)
3073 if (orig_teams != new_teams || orig_threads != new_threads)
3075 size_t tms_len = (orig_teams == new_teams
3096 && orig_teams != new_teams)
3113 if (orig_teams != new_teams)