Home
last modified time | relevance | path

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

/linux-4.1.27/arch/s390/include/asm/
Dtimex.h154 static inline unsigned long long tod_to_ns(unsigned long long todval) in tod_to_ns() argument
158 ns = ((todval >> 32) << 23) * 125; in tod_to_ns()
159 ns += ((todval & 0xffffffff) * 125) >> 9; in tod_to_ns()
/linux-4.1.27/arch/s390/kernel/
Dtime.c79 void tod_to_timeval(__u64 todval, struct timespec *xt) in tod_to_timeval() argument
83 sec = todval >> 12; in tod_to_timeval()
86 todval -= (sec * 1000000) << 12; in tod_to_timeval()
87 xt->tv_nsec = ((todval * 1000) >> 12); in tod_to_timeval()