Lines Matching refs:ts
103 struct pps_event_time *ts, int event, void *data);
108 struct timespec 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 getnstime_raw_and_real(&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 getnstimeofday(&ts->ts_real); in pps_get_ts()
131 static inline void pps_sub_ts(struct pps_event_time *ts, struct timespec delta) in pps_sub_ts() argument
133 ts->ts_real = timespec_sub(ts->ts_real, delta); in pps_sub_ts()
135 ts->ts_raw = timespec_sub(ts->ts_raw, delta); in pps_sub_ts()