Lines Matching defs:tv64
39 * mathematical operations on the tv64 member of the union too, which
47 s64 tv64;
79 return (ktime_t){ .tv64 = KTIME_MAX };
81 return (ktime_t) { .tv64 = (s64)secs * NSEC_PER_SEC + (s64)nsecs };
86 ({ (ktime_t){ .tv64 = (lhs).tv64 - (rhs).tv64 }; })
90 ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; })
97 ({ (ktime_t){ .tv64 = (kt).tv64 + (nsval) }; })
112 #define ktime_to_timespec(kt) ns_to_timespec((kt).tv64)
115 #define ktime_to_timeval(kt) ns_to_timeval((kt).tv64)
118 #define ktime_to_ns(kt) ((kt).tv64)
154 res.tv64 = lhs.tv64 - rhs.tv64;
172 res.tv64 = add1.tv64 + add2.tv64;
182 res.tv64 += (u32)-NSEC_PER_SEC;
264 #define KTIME_REALTIME_RES (ktime_t){ .tv64 = TICK_NSEC }
265 #define KTIME_MONOTONIC_RES (ktime_t){ .tv64 = TICK_NSEC }