Lines Matching refs:ts
74 struct timespec ts = { .tv_sec = 0, .tv_nsec = 100000000 }; in do_test() local
75 TEMP_FAILURE_RETRY (nanosleep (&ts, &ts)); in do_test()
120 ts.tv_sec = 0; in do_test()
121 ts.tv_nsec = 100000000; in do_test()
122 TEMP_FAILURE_RETRY (nanosleep (&ts, &ts)); in do_test()
169 ts.tv_sec = 0; in do_test()
170 ts.tv_nsec = 0; in do_test()
172 if (clock_settime (cl[i], &ts) != 0) in do_test()
180 if (clock_gettime (cl[i], &ts) != 0) in do_test()
186 if (ts.tv_sec > t[i].tv_sec in do_test()
187 || (ts.tv_sec == t[i].tv_sec && ts.tv_nsec > t[i].tv_nsec)) in do_test()