Lines Matching refs:timespec
79 static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64) in timespec64_to_timespec()
81 return *(const struct timespec *)&ts64; in timespec64_to_timespec()
84 static inline struct timespec64 timespec_to_timespec64(const struct timespec ts) in timespec_to_timespec64()
90 static inline struct timespec timespec64_to_timespec(const struct timespec64 ts64) in timespec64_to_timespec()
92 struct timespec ret; in timespec64_to_timespec()
99 static inline struct timespec64 timespec_to_timespec64(const struct timespec ts) in timespec_to_timespec64()
109 static inline int timespec_equal(const struct timespec *a, in timespec_equal()
110 const struct timespec *b) in timespec_equal()
120 static inline int timespec_compare(const struct timespec *lhs, const struct timespec *rhs) in timespec_compare()
132 static inline bool timespec_valid(const struct timespec *ts) in timespec_valid()
150 static inline s64 timespec_to_ns(const struct timespec *ts) in timespec_to_ns()
161 extern struct timespec ns_to_timespec(const s64 nsec);
171 static __always_inline void timespec_add_ns(struct timespec *a, u64 ns) in timespec_add_ns()