• Home
  • Raw
  • Download

Lines Matching refs:t

42   timespec t;  in BM_time_clock_gettime()  local
44 clock_gettime(CLOCK_MONOTONIC, &t); in BM_time_clock_gettime()
51 timespec t; in BM_time_clock_gettime_syscall() local
53 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t); in BM_time_clock_gettime_syscall()
60 timespec t; in BM_time_clock_gettime_MONOTONIC_COARSE() local
62 clock_gettime(CLOCK_MONOTONIC_COARSE, &t); in BM_time_clock_gettime_MONOTONIC_COARSE()
69 timespec t; in BM_time_clock_gettime_MONOTONIC_RAW() local
71 clock_gettime(CLOCK_MONOTONIC_RAW, &t); in BM_time_clock_gettime_MONOTONIC_RAW()
78 timespec t; in BM_time_clock_gettime_REALTIME() local
80 clock_gettime(CLOCK_REALTIME, &t); in BM_time_clock_gettime_REALTIME()
87 timespec t; in BM_time_clock_gettime_REALTIME_COARSE() local
89 clock_gettime(CLOCK_REALTIME_COARSE, &t); in BM_time_clock_gettime_REALTIME_COARSE()
96 timespec t; in BM_time_clock_gettime_BOOTTIME() local
98 clock_gettime(CLOCK_BOOTTIME, &t); in BM_time_clock_gettime_BOOTTIME()
105 timespec t; in BM_time_clock_getres() local
107 clock_getres(CLOCK_MONOTONIC, &t); in BM_time_clock_getres()
114 timespec t; in BM_time_clock_getres_syscall() local
116 syscall(__NR_clock_getres, CLOCK_MONOTONIC, &t); in BM_time_clock_getres_syscall()
123 timespec t; in BM_time_clock_getres_MONOTONIC_COARSE() local
125 clock_getres(CLOCK_MONOTONIC_COARSE, &t); in BM_time_clock_getres_MONOTONIC_COARSE()
132 timespec t; in BM_time_clock_getres_MONOTONIC_RAW() local
134 clock_getres(CLOCK_MONOTONIC_RAW, &t); in BM_time_clock_getres_MONOTONIC_RAW()
141 timespec t; in BM_time_clock_getres_REALTIME() local
143 clock_getres(CLOCK_REALTIME, &t); in BM_time_clock_getres_REALTIME()
150 timespec t; in BM_time_clock_getres_REALTIME_COARSE() local
152 clock_getres(CLOCK_REALTIME_COARSE, &t); in BM_time_clock_getres_REALTIME_COARSE()
159 timespec t; in BM_time_clock_getres_BOOTTIME() local
161 clock_getres(CLOCK_BOOTTIME, &t); in BM_time_clock_getres_BOOTTIME()
190 time_t t = time(nullptr); in BM_time_localtime() local
192 localtime(&t); in BM_time_localtime()
198 time_t t = time(nullptr); in BM_time_localtime_r() local
201 localtime_r(&t, &tm); in BM_time_localtime_r()
208 time_t t = 0; in BM_time_strftime() local
209 struct tm* tm = gmtime(&t); in BM_time_strftime()