Lines Matching defs:blocktime
1235 (1000000) /* number of blocktime units per second */
1250 #define KMP_WAKEUPS_FROM_BLOCKTIME(blocktime, monitor_wakeups) \
1251 (((blocktime) == KMP_MAX_BLOCKTIME) ? (monitor_wakeups) \
1252 : ((blocktime) == KMP_MIN_BLOCKTIME) ? KMP_MAX_MONITOR_WAKEUPS \
1253 : ((monitor_wakeups) > (KMP_BLOCKTIME_MULTIPLIER / (blocktime))) \
1255 : (KMP_BLOCKTIME_MULTIPLIER) / (blocktime))
1259 #define KMP_INTERVALS_FROM_BLOCKTIME(blocktime, monitor_wakeups) \
1260 (((blocktime) + (KMP_BLOCKTIME_MULTIPLIER / (monitor_wakeups)) - 1) / \
2176 bt_set; /* internal control for whether blocktime is explicitly set */
2177 int blocktime; /* internal control for blocktime */
2179 int bt_intervals; /* internal control for blocktime intervals */
2370 ((xteam)->t.t_threads[(xtid)]->th.th_current_task->td_icvs.blocktime)
2386 (((xteam)->t.t_threads[(xtid)]->th.th_current_task->td_icvs.blocktime) = \
2957 /* The blocktime info is copied from the team struct to the thread struct */
3277 int r_blocktime; /* blocktime for this root and descendants */
3486 // Convert raw blocktime from ms to us if needed.
3504 extern int __kmp_zero_bt; /* whether blocktime has been forced to zero */