Home | History | Annotate | Download | only in btreplay

Lines Matching defs:ts

285 static inline __u64 ts2ns(struct timespec *ts)
287 return ((__u64)(ts->tv_sec) * NS_TICKS) + (__u64)(ts->tv_nsec);
345 struct timespec ts = {
349 clock_settime(CLOCK_MONOTONIC, &ts);
354 struct timespec ts;
355 clock_gettime(CLOCK_MONOTONIC, &ts);
356 return ts2ns(&ts);