Lines Matching refs:ts
1265 cdf_print_elapsed_time(char *buf, size_t bufsiz, cdf_timestamp_t ts) in cdf_print_elapsed_time() argument
1270 ts /= CDF_TIME_PREC; in cdf_print_elapsed_time()
1271 secs = CAST(int, ts % 60); in cdf_print_elapsed_time()
1272 ts /= 60; in cdf_print_elapsed_time()
1273 mins = CAST(int, ts % 60); in cdf_print_elapsed_time()
1274 ts /= 60; in cdf_print_elapsed_time()
1275 hours = CAST(int, ts % 24); in cdf_print_elapsed_time()
1276 ts /= 24; in cdf_print_elapsed_time()
1277 days = CAST(int, ts); in cdf_print_elapsed_time()
1394 struct timeval ts; in cdf_dump_dir() local
1415 cdf_timestamp_to_timespec(&ts, d->d_created); in cdf_dump_dir()
1416 (void)fprintf(stderr, "Created %s", cdf_ctime(&ts.tv_sec, buf)); in cdf_dump_dir()
1417 cdf_timestamp_to_timespec(&ts, d->d_modified); in cdf_dump_dir()
1419 cdf_ctime(&ts.tv_sec, buf)); in cdf_dump_dir()
1449 struct timeval ts; in cdf_dump_property_info() local
1498 cdf_timestamp_to_timespec(&ts, tp); in cdf_dump_property_info()
1500 cdf_ctime(&ts.tv_sec, tbuf)); in cdf_dump_property_info()
1544 struct timespec ts; in cdf_dump_catalog() local
1550 cdf_timestamp_to_timespec(&ts, ce[i].ce_timestamp); in cdf_dump_catalog()
1553 cdf_ctime(&ts.tv_sec, tbuf)); in cdf_dump_catalog()