Lines Matching refs:ct
48 struct timeval ct, dt; in uc_check_timeval() local
50 if (gettimeofday(&ct, NULL) < 0) in uc_check_timeval()
52 timersub(&ct, bt, &dt); in uc_check_timeval()
62 struct timespec ct; in uc_check_timespec_real() local
64 if (clock_gettime(CLOCK_REALTIME, &ct) < 0) in uc_check_timespec_real()
66 timespecsub(&ct, bt, &ct); in uc_check_timespec_real()
67 if (!timespeccmp(&ct, &max_diff_ts, <)) in uc_check_timespec_real()
76 struct timespec ct; in uc_check_timespec_mono() local
78 if (clock_gettime(CLOCK_MONOTONIC, &ct) < 0) in uc_check_timespec_mono()
80 timespecsub(&ct, bt, &ct); in uc_check_timespec_mono()
81 if (!timespeccmp(&ct, &max_diff_ts, <)) in uc_check_timespec_mono()