Lines Matching refs:span
359 ST span; in __kmp_for_static_init() local
366 span = chunk * incr; in __kmp_for_static_init()
368 *pstride = span * nchunks; in __kmp_for_static_init()
370 *plower = *plower + (span * tid); in __kmp_for_static_init()
371 *pupper = *plower + span - incr; in __kmp_for_static_init()
376 *pstride = span * nth; in __kmp_for_static_init()
377 *plower = *plower + (span * tid); in __kmp_for_static_init()
378 *pupper = *plower + span - incr; in __kmp_for_static_init()
387 UT span = (trip_count + nth - 1) / nth; in __kmp_for_static_init() local
390 chunk = (span + chunk - 1) & ~(chunk - 1); in __kmp_for_static_init()
392 span = chunk * incr; in __kmp_for_static_init()
393 *plower = *plower + (span * tid); in __kmp_for_static_init()
394 *pupper = *plower + span - incr; in __kmp_for_static_init()
680 ST span; in __kmp_dist_for_static_init() local
683 span = chunk * incr; in __kmp_dist_for_static_init()
684 *pstride = span * nth; in __kmp_dist_for_static_init()
685 *plower = *plower + (span * tid); in __kmp_dist_for_static_init()
686 *pupper = *plower + span - incr; in __kmp_dist_for_static_init()
755 ST span; in __kmp_team_static_init() local
816 span = chunk * incr; in __kmp_team_static_init()
817 *p_st = span * nteams; in __kmp_team_static_init()
818 *p_lb = lower + (span * team_id); in __kmp_team_static_init()
819 *p_ub = *p_lb + span - incr; in __kmp_team_static_init()