Home | History | Annotate | Download | only in linux

Lines Matching defs:tv_nsec

14 	long	tv_nsec;	/* nanoseconds */
41 return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec);
55 return lhs->tv_nsec - rhs->tv_nsec;
81 lhs.tv_nsec - rhs.tv_nsec);
89 (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC))
131 return ((s64) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec;
170 ns += a->tv_nsec;
175 a->tv_nsec = ns;