Lines Matching refs:span
349 ST span; in __kmp_for_static_init() local
356 span = chunk * incr; in __kmp_for_static_init()
358 *pstride = span * nchunks; in __kmp_for_static_init()
360 *plower = *plower + (span * tid); in __kmp_for_static_init()
361 *pupper = *plower + span - incr; in __kmp_for_static_init()
366 *pstride = span * nth; in __kmp_for_static_init()
367 *plower = *plower + (span * tid); in __kmp_for_static_init()
368 *pupper = *plower + span - incr; in __kmp_for_static_init()
377 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init() local
380 chunk = (span + chunk - 1) & ~(chunk - 1); in __kmp_for_static_init()
382 span = chunk * incr; in __kmp_for_static_init()
383 *plower = *plower + (span * tid); in __kmp_for_static_init()
384 *pupper = *plower + span - incr; in __kmp_for_static_init()
647 ST span; in __kmp_dist_for_static_init() local
650 span = chunk * incr; in __kmp_dist_for_static_init()
651 *pstride = span * nth; in __kmp_dist_for_static_init()
652 *plower = *plower + (span * tid); in __kmp_dist_for_static_init()
653 *pupper = *plower + span - incr; in __kmp_dist_for_static_init()
702 ST span; in __kmp_team_static_init() local
763 span = chunk * incr; in __kmp_team_static_init()
764 *p_st = span * nteams; in __kmp_team_static_init()
765 *p_lb = lower + (span * team_id); in __kmp_team_static_init()
766 *p_ub = *p_lb + span - incr; in __kmp_team_static_init()