Lines Matching refs:t
27 timespec t; in BM_time_clock_gettime() local
29 clock_gettime(CLOCK_MONOTONIC, &t); in BM_time_clock_gettime()
36 timespec t; in BM_time_clock_gettime_syscall() local
38 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t); in BM_time_clock_gettime_syscall()
45 timespec t; in BM_time_clock_gettime_MONOTONIC_COARSE() local
47 clock_gettime(CLOCK_MONOTONIC_COARSE, &t); in BM_time_clock_gettime_MONOTONIC_COARSE()
54 timespec t; in BM_time_clock_gettime_MONOTONIC_RAW() local
56 clock_gettime(CLOCK_MONOTONIC_RAW, &t); in BM_time_clock_gettime_MONOTONIC_RAW()
63 timespec t; in BM_time_clock_gettime_REALTIME() local
65 clock_gettime(CLOCK_REALTIME, &t); in BM_time_clock_gettime_REALTIME()
72 timespec t; in BM_time_clock_gettime_REALTIME_COARSE() local
74 clock_gettime(CLOCK_REALTIME_COARSE, &t); in BM_time_clock_gettime_REALTIME_COARSE()
81 timespec t; in BM_time_clock_gettime_BOOTTIME() local
83 clock_gettime(CLOCK_BOOTTIME, &t); in BM_time_clock_gettime_BOOTTIME()
90 timespec t; in BM_time_clock_getres() local
92 clock_getres(CLOCK_MONOTONIC, &t); in BM_time_clock_getres()
99 timespec t; in BM_time_clock_getres_syscall() local
101 syscall(__NR_clock_getres, CLOCK_MONOTONIC, &t); in BM_time_clock_getres_syscall()
108 timespec t; in BM_time_clock_getres_MONOTONIC_COARSE() local
110 clock_getres(CLOCK_MONOTONIC_COARSE, &t); in BM_time_clock_getres_MONOTONIC_COARSE()
117 timespec t; in BM_time_clock_getres_MONOTONIC_RAW() local
119 clock_getres(CLOCK_MONOTONIC_RAW, &t); in BM_time_clock_getres_MONOTONIC_RAW()
126 timespec t; in BM_time_clock_getres_REALTIME() local
128 clock_getres(CLOCK_REALTIME, &t); in BM_time_clock_getres_REALTIME()
135 timespec t; in BM_time_clock_getres_REALTIME_COARSE() local
137 clock_getres(CLOCK_REALTIME_COARSE, &t); in BM_time_clock_getres_REALTIME_COARSE()
144 timespec t; in BM_time_clock_getres_BOOTTIME() local
146 clock_getres(CLOCK_BOOTTIME, &t); in BM_time_clock_getres_BOOTTIME()
175 time_t t = time(nullptr); in BM_time_localtime() local
177 localtime(&t); in BM_time_localtime()
183 time_t t = time(nullptr); in BM_time_localtime_r() local
186 localtime_r(&t, &tm); in BM_time_localtime_r()