Searched defs:ktime_t (Results 1 - 1 of 1) sorted by relevance

/include/linux/
H A Dktime.h4 * ktime_t - nanosecond-resolution time format.
16 * the ktime_t union and further simplifications of the original
28 * ktime_t:
33 * NOPs and most arithmetic ktime_t operations are plain arithmetic
41 typedef union ktime ktime_t; /* Kill this */ typedef in typeref:union:ktime
44 * ktime_set - Set a ktime_t variable from a seconds/nanoseconds value
48 * Return: The ktime_t representation of the value.
50 static inline ktime_t ktime_set(const s64 secs, const unsigned long nsecs)
53 return (ktime_t){ .tv64 = KTIME_MAX };
55 return (ktime_t) {
[all...]

Completed in 59 milliseconds