Lines Matching refs:timespec
79 int64_t timespec_to_ns(struct timespec ts) in timespec_to_ns()
84 struct timespec timespec_add_ns(struct timespec ts, int64_t ns) in timespec_add_ns()
86 struct timespec res; in timespec_add_ns()
95 struct timespec timespec_add(struct timespec ts1, struct timespec ts2) in timespec_add()
99 return timespec_add_ns((struct timespec){0}, ns1 + ns2); in timespec_add()
102 struct timespec timespec_sub(struct timespec ts1, struct timespec ts2) in timespec_sub()
106 return timespec_add_ns((struct timespec){0}, ns1 - ns2); in timespec_sub()
109 struct timespec timespec_elapsed(struct timespec start) in timespec_elapsed()
111 struct timespec end; in timespec_elapsed()
117 struct timespec timespec_div(struct timespec ts, int divisor) in timespec_div()
121 return timespec_add_ns((struct timespec){0}, ns); in timespec_div()