Lines Matching refs:tp
160 posix_cpu_clock_getres(const clockid_t which_clock, struct timespec64 *tp) in posix_cpu_clock_getres() argument
165 tp->tv_sec = 0; in posix_cpu_clock_getres()
166 tp->tv_nsec = ((NSEC_PER_SEC + HZ - 1) / HZ); in posix_cpu_clock_getres()
173 tp->tv_nsec = 1; in posix_cpu_clock_getres()
180 posix_cpu_clock_set(const clockid_t clock, const struct timespec64 *tp) in posix_cpu_clock_set() argument
359 static int posix_cpu_clock_get(const clockid_t clock, struct timespec64 *tp) in posix_cpu_clock_get() argument
378 *tp = ns_to_timespec64(t); in posix_cpu_clock_get()
1634 struct timespec64 *tp) in process_cpu_clock_getres() argument
1636 return posix_cpu_clock_getres(PROCESS_CLOCK, tp); in process_cpu_clock_getres()
1639 struct timespec64 *tp) in process_cpu_clock_get() argument
1641 return posix_cpu_clock_get(PROCESS_CLOCK, tp); in process_cpu_clock_get()
1654 struct timespec64 *tp) in thread_cpu_clock_getres() argument
1656 return posix_cpu_clock_getres(THREAD_CLOCK, tp); in thread_cpu_clock_getres()
1659 struct timespec64 *tp) in thread_cpu_clock_get() argument
1661 return posix_cpu_clock_get(THREAD_CLOCK, tp); in thread_cpu_clock_get()