Lines Matching refs:span
362 ST span; in __kmp_for_static_init() local
370 span = chunk * incr; in __kmp_for_static_init()
372 *pstride = span * nchunks; in __kmp_for_static_init()
374 *plower = *plower + (span * tid); in __kmp_for_static_init()
375 *pupper = *plower + span - incr; in __kmp_for_static_init()
380 *pstride = span * nth; in __kmp_for_static_init()
381 *plower = *plower + (span * tid); in __kmp_for_static_init()
382 *pupper = *plower + span - incr; in __kmp_for_static_init()
392 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init() local
395 chunk = (span + chunk - 1) & ~(chunk - 1); in __kmp_for_static_init()
397 span = chunk * incr; in __kmp_for_static_init()
398 *plower = *plower + (span * tid); in __kmp_for_static_init()
399 *pupper = *plower + span - incr; in __kmp_for_static_init()
692 ST span; in __kmp_dist_for_static_init() local
695 span = chunk * incr; in __kmp_dist_for_static_init()
696 *pstride = span * nth; in __kmp_dist_for_static_init()
697 *plower = *plower + (span * tid); in __kmp_dist_for_static_init()
698 *pupper = *plower + span - incr; in __kmp_dist_for_static_init()
769 ST span; in __kmp_team_static_init() local
831 span = chunk * incr; in __kmp_team_static_init()
832 *p_st = span * nteams; in __kmp_team_static_init()
833 *p_lb = lower + (span * team_id); in __kmp_team_static_init()
834 *p_ub = *p_lb + span - incr; in __kmp_team_static_init()