Lines Matching refs:timespec
86 int64_t timespec_to_ns(struct timespec ts) in timespec_to_ns()
91 struct timespec timespec_add_ns(struct timespec ts, int64_t ns) in timespec_add_ns()
93 struct timespec res; in timespec_add_ns()
102 struct timespec timespec_add(struct timespec ts1, struct timespec ts2) in timespec_add()
106 return timespec_add_ns((struct timespec){0}, ns1 + ns2); in timespec_add()
109 struct timespec timespec_sub(struct timespec ts1, struct timespec ts2) in timespec_sub()
113 return timespec_add_ns((struct timespec){0}, ns1 - ns2); in timespec_sub()
116 struct timespec timespec_elapsed(struct timespec start) in timespec_elapsed()
118 struct timespec end; in timespec_elapsed()
124 struct timespec timespec_div(struct timespec ts, int divisor) in timespec_div()
128 return timespec_add_ns((struct timespec){0}, ns); in timespec_div()