Lines Matching refs:ts
103 struct pps_event_time *ts, int event, void *data);
108 struct timespec64 ts) in timespec_to_pps_ktime() argument
110 kt->sec = ts.tv_sec; in timespec_to_pps_ktime()
111 kt->nsec = ts.tv_nsec; in timespec_to_pps_ktime()
116 static inline void pps_get_ts(struct pps_event_time *ts) in pps_get_ts() argument
118 ktime_get_raw_and_real_ts64(&ts->ts_raw, &ts->ts_real); in pps_get_ts()
123 static inline void pps_get_ts(struct pps_event_time *ts) in pps_get_ts() argument
125 ktime_get_real_ts64(&ts->ts_real); in pps_get_ts()
131 static inline void pps_sub_ts(struct pps_event_time *ts, struct timespec64 delta) in pps_sub_ts() argument
133 ts->ts_real = timespec64_sub(ts->ts_real, delta); in pps_sub_ts()
135 ts->ts_raw = timespec64_sub(ts->ts_raw, delta); in pps_sub_ts()