Searched refs:todval (Results 1 – 2 of 2) sorted by relevance
112 void tod_to_timeval(__u64 todval, struct timespec64 *xt);155 static inline unsigned long long tod_to_ns(unsigned long long todval) in tod_to_ns() argument159 ns = ((todval >> 32) << 23) * 125; in tod_to_ns()160 ns += ((todval & 0xffffffff) * 125) >> 9; in tod_to_ns()
82 void tod_to_timeval(__u64 todval, struct timespec64 *xt) in tod_to_timeval() argument86 sec = todval >> 12; in tod_to_timeval()89 todval -= (sec * 1000000) << 12; in tod_to_timeval()90 xt->tv_nsec = ((todval * 1000) >> 12); in tod_to_timeval()