Home | History | Annotate | Download | only in btreplay

Lines Matching refs:__u64

148 static __u64 genesis = ~0;		// Earliest time seen
149 static __u64 rgenesis; // Our start time
228 static inline long long unsigned du64_to_sec(__u64 du64)
233 static inline long long unsigned du64_to_nsec(__u64 du64)
284 #define NS_TICKS ((__u64)1000 * (__u64)1000 * (__u64)1000)
285 static inline __u64 ts2ns(struct timespec *ts)
287 return ((__u64)(ts->tv_sec) * NS_TICKS) + (__u64)(ts->tv_nsec);
293 static inline __u64 tv2ns(struct timeval *tp)
295 return ((__u64)(tp->tv_sec)) + ((__u64)(tp->tv_usec) * (__u64)1000);
338 static inline __u64 gettime(void)
861 __u64 my_version = mk_btversion(btver_mjr, btver_mnr, btver_sub);
1254 __u64 i = 0;