Lines Matching refs:ts
99 cdf_timestamp_to_timespec(struct timespec *ts, cdf_timestamp_t t) in cdf_timestamp_to_timespec() argument
108 ts->tv_nsec = (t % CDF_TIME_PREC) * 100; in cdf_timestamp_to_timespec()
137 ts->tv_sec = mktime(&tm); in cdf_timestamp_to_timespec()
138 if (ts->tv_sec == -1) { in cdf_timestamp_to_timespec()
147 cdf_timespec_to_timestamp(cdf_timestamp_t *t, const struct timespec *ts) in cdf_timespec_to_timestamp() argument
151 (void)&ts; in cdf_timespec_to_timestamp()
155 if (gmtime_r(&ts->ts_sec, &tm) == NULL) { in cdf_timespec_to_timestamp()
159 *t = (ts->ts_nsec / 100) * CDF_TIME_PREC; in cdf_timespec_to_timestamp()
189 struct timespec ts; in main() local
195 cdf_timestamp_to_timespec(&ts, tst); in main()
196 p = cdf_ctime(&ts.tv_sec, buf); in main()