Home
last modified time | relevance | path

Searched refs:KMP_NOW (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/openmp/runtime/src/
Dkmp.h1063 #define KMP_NOW() ((kmp_uint64)_rdtsc()) macro
1065 #define KMP_NOW() __kmp_hardware_timestamp() macro
1067 #define KMP_NOW_MSEC() (KMP_NOW() / __kmp_ticks_per_msec)
1070 #define KMP_BLOCKING(goal, count) ((goal) > KMP_NOW())
1074 #define KMP_NOW() __kmp_now_nsec() macro
1075 #define KMP_NOW_MSEC() (KMP_NOW() / KMP_USEC_PER_SEC)
1078 #define KMP_BLOCKING(goal, count) ((count) % 1000 != 0 || (goal) > KMP_NOW())
Dkmp_wait_release.h320 hibernate_goal = KMP_NOW(); in __kmp_wait_template()
322 hibernate_goal = KMP_NOW() + this_thr->th.th_team_bt_intervals; in __kmp_wait_template()