Home
last modified time | relevance | path

Searched refs:todval (Results 1 – 2 of 2) sorted by relevance

/arch/s390/include/asm/
Dtimex.h112 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() argument
159 ns = ((todval >> 32) << 23) * 125; in tod_to_ns()
160 ns += ((todval & 0xffffffff) * 125) >> 9; in tod_to_ns()
/arch/s390/kernel/
Dtime.c82 void tod_to_timeval(__u64 todval, struct timespec64 *xt) in tod_to_timeval() argument
86 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()