Lines Matching refs:nthreads
46 if (team == NULL || team->nthreads == 1) in gomp_ordered_first()
50 if (index >= team->nthreads) in gomp_ordered_first()
51 index -= team->nthreads; in gomp_ordered_first()
77 if (team == NULL || team->nthreads == 1) in gomp_ordered_last()
87 if (next == team->nthreads) in gomp_ordered_last()
112 if (team == NULL || team->nthreads == 1) in gomp_ordered_next()
130 if (ws->ordered_num_used < team->nthreads) in gomp_ordered_next()
133 if (index >= team->nthreads) in gomp_ordered_next()
134 index -= team->nthreads; in gomp_ordered_next()
139 if (index == team->nthreads) in gomp_ordered_next()
157 if (team == NULL || team->nthreads == 1) in gomp_ordered_static_init()
177 if (team == NULL || team->nthreads == 1) in gomp_ordered_static_next()
183 if (++id == team->nthreads) in gomp_ordered_static_next()
202 if (team == NULL || team->nthreads == 1) in gomp_ordered_sync()