Searched refs:ttime (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_leapsec.c54 vint64 ttime; /* transition time (after the step, ntp scale) */ member in struct:leap_info
69 vint64 ttime; /* nominal transition time (next era start) */ member in struct:leap_head
187 vint64 ttime, limit; local
219 ttime = strtouv64(cp, &ep, 10);
227 if (ucmpv64(&ttime, &limit) >= 0) {
228 if (!leapsec_raw(pt, &ttime,
234 pt->lsig.ttime = ttime.D_s.lo;
267 ts = pt->info[idx].ttime;
329 last = pt->head.ttime;
953 vint64 ttime, starttime; local
999 leapsec_raw( leap_table_t * pt, const vint64 * ttime, int taiof, int dynls) argument
[all...]
H A Dntp_leapsec.h69 vint64 ttime; /* era end (UTC of next leap second) */ member in struct:leap_era
77 * 'ttime' is the next transition point in full time scale. (Nominal UTC
96 vint64 ttime; member in struct:leap_result
117 uint32_t ttime; /* transition time */ member in struct:leap_signature
219 extern int/*BOOL*/ leapsec_add_fix(int offset, uint32_t ttime, uint32_t etime,
259 * qr->ttime;
H A Dntp_timer.c595 leap_smear.intv_end = lsdata.ttime.Q_s;
H A Dntp_util.c502 fstostr(lsig.ttime),
H A Dntp_crypto.c1905 if ( ! memcmp(&leap_data.ebase, &leap_data.ttime, sizeof(vint64))) {
1925 if (leap_data.ttime.d_s.hi >= 0)
1926 ptr[2] = htonl(leap_data.ttime.D_s.lo + 7*86400);
H A Dntp_control.c2122 if (lsig.ttime > 0)
2123 ctl_putfs(sys_var[CS_LEAPTAB].text, lsig.ttime);
/freebsd-11-stable/usr.sbin/cron/cron/
H A Dcron.c409 struct timespec ctime, ttime, stime, remtime; local
417 ttime.tv_sec = TargetTime;
418 ttime.tv_nsec = 0;
419 timespec_subtract(&stime, &ttime, &ctime);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c1273 int ttime; local
1352 ttime = archive_le32dec(file_header.file_time);
1353 rar->mtime = get_time(ttime);
1710 get_time(int ttime) argument
1713 tm.tm_sec = 2 * (ttime & 0x1f);
1714 tm.tm_min = (ttime >> 5) & 0x3f;
1715 tm.tm_hour = (ttime >> 11) & 0x1f;
1716 tm.tm_mday = (ttime >> 16) & 0x1f;
1717 tm.tm_mon = ((ttime >> 21) & 0x0f) - 1;
1718 tm.tm_year = ((ttime >> 2
1727 int ttime, i; local
[all...]
/freebsd-11-stable/usr.bin/at/
H A Dat.c119 static time_t ttime(const char *arg);
639 ttime(const char *arg) function
818 timer = ttime(optarg);

Completed in 103 milliseconds