Home | History | Annotate | Download | only in tests

Lines Matching defs:ts

42 		struct timespec ts;
48 if (syscall(__NR_clock_getres, CLOCK_REALTIME, &t.ts))
51 (intmax_t) t.ts.tv_sec,
52 (intmax_t) t.ts.tv_nsec);
54 if (syscall(__NR_clock_gettime, CLOCK_PROCESS_CPUTIME_ID, &t.ts))
57 (intmax_t) t.ts.tv_sec,
58 (intmax_t) t.ts.tv_nsec);
60 t.ts.tv_sec = 0xdeface1;
61 t.ts.tv_nsec = 0xdeface2;
62 if (!syscall(__NR_clock_settime, CLOCK_THREAD_CPUTIME_ID, &t.ts))
66 (intmax_t) t.ts.tv_sec,
67 (intmax_t) t.ts.tv_nsec);