• Home
  • Raw
  • Download

Lines Matching refs:_PyTime_t

54 static int pysleep(_PyTime_t);
58 _PyFloat_FromPyTime(_PyTime_t t) in _PyFloat_FromPyTime()
68 _PyTime_t t = _PyTime_GetSystemClock(); in time_time()
82 _PyTime_t t = _PyTime_GetSystemClock(); in time_time_ns()
102 _PyTime_GetClockWithInfo(_PyTime_t *tp, _Py_clock_info_t *info) in _PyTime_GetClockWithInfo()
112 if ((_PyTime_t)CLOCKS_PER_SEC > _PyTime_MAX / SEC_TO_NS) { in _PyTime_GetClockWithInfo()
133 *tp = _PyTime_MulDiv(ticks, SEC_TO_NS, (_PyTime_t)CLOCKS_PER_SEC); in _PyTime_GetClockWithInfo()
141 _PyTime_t t; in perf_counter()
164 _PyTime_t t; in pyclock()
217 _PyTime_t t; in time_clock_gettime_ns()
246 _PyTime_t t; in time_clock_settime()
277 _PyTime_t t; in time_clock_settime_ns()
363 _PyTime_t secs; in time_sleep()
1056 _PyTime_t t = _PyTime_GetMonotonicClock(); in time_monotonic()
1068 _PyTime_t t = _PyTime_GetMonotonicClock(); in time_monotonic_ns()
1091 _PyTime_t t = _PyTime_GetPerfCounter(); in time_perf_counter_ns()
1101 _PyTime_GetProcessTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info) in _PyTime_GetProcessTimeWithInfo()
1107 _PyTime_t ktime, utime, t; in _PyTime_GetProcessTimeWithInfo()
1176 _PyTime_t utime, stime; in _PyTime_GetProcessTimeWithInfo()
1192 _PyTime_t total = utime + utime; in _PyTime_GetProcessTimeWithInfo()
1222 if ((_PyTime_t)freq > _PyTime_MAX / SEC_TO_NS) { in _PyTime_GetProcessTimeWithInfo()
1241 _PyTime_t total; in _PyTime_GetProcessTimeWithInfo()
1259 _PyTime_t t; in time_process_time()
1274 _PyTime_t t; in time_process_time_ns()
1291 _PyTime_GetThreadTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info) in _PyTime_GetThreadTimeWithInfo()
1296 _PyTime_t ktime, utime, t; in _PyTime_GetThreadTimeWithInfo()
1331 _PyTime_GetThreadTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info) in _PyTime_GetThreadTimeWithInfo()
1364 _PyTime_t t; in time_thread_time()
1379 _PyTime_t t; in time_thread_time_ns()
1400 _PyTime_t t; in time_get_clock_info()
1808 pysleep(_PyTime_t secs) in pysleep()
1810 _PyTime_t deadline, monotonic; in pysleep()
1815 _PyTime_t millisecs; in pysleep()