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

/freebsd-current/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
188 vint64 ttime, limit; local
220 ttime = strtouv64(cp, &ep, 10);
228 if (ucmpv64(&ttime, &limit) >= 0) {
229 if (!leapsec_raw(pt, &ttime,
235 pt->lsig.ttime = ttime.D_s.lo;
268 ts = pt->info[idx].ttime;
330 last = pt->head.ttime;
954 vint64 ttime, starttime; local
1000 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.c545 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.c2117 if (lsig.ttime > 0)
2118 ctl_putfs(sys_var[CS_LEAPTAB].text, lsig.ttime);
/freebsd-current/usr.sbin/cron/cron/
H A Dcron.c394 struct timespec ctime, ttime, stime, remtime; local
402 ttime.tv_sec = TargetTime;
403 ttime.tv_nsec = 0;
404 timespec_subtract(&stime, &ttime, &ctime);
/freebsd-current/usr.bin/at/
H A Dat.c117 static time_t ttime(const char *arg);
637 ttime(const char *arg) function
816 timer = ttime(optarg);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c1372 int ttime; local
1453 ttime = archive_le32dec(file_header.file_time);
1454 rar->mtime = get_time(ttime);
1812 get_time(int ttime) argument
1815 tm.tm_sec = 2 * (ttime & 0x1f);
1816 tm.tm_min = (ttime >> 5) & 0x3f;
1817 tm.tm_hour = (ttime >> 11) & 0x1f;
1818 tm.tm_mday = (ttime >> 16) & 0x1f;
1819 tm.tm_mon = ((ttime >> 21) & 0x0f) - 1;
1820 tm.tm_year = ((ttime >> 2
1829 int ttime, i; local
[all...]

Completed in 202 milliseconds