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

/freebsd-10.1-release/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;
940 vint64 ttime, starttime; local
986 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
218 extern int/*BOOL*/ leapsec_add_fix(int offset, uint32_t ttime, uint32_t etime,
258 * qr->ttime;
H A Dntp_timer.c578 leap_smear.intv_end = lsdata.ttime.Q_s;
H A Dntp_util.c498 fstostr(lsig.ttime),
H A Dntp_crypto.c1894 if ( ! memcmp(&leap_data.ebase, &leap_data.ttime, sizeof(vint64))) {
1914 if (leap_data.ttime.d_s.hi >= 0)
1915 ptr[2] = htonl(leap_data.ttime.D_s.lo + 7*86400);
H A Dntp_control.c2148 if (lsig.ttime > 0)
2149 ctl_putfs(sys_var[CS_LEAPTAB].text, lsig.ttime);
/freebsd-10.1-release/usr.sbin/IPXrouted/
H A Dmain.c107 time_t ttime; local
265 ttime = time(NULL);
266 if (ttime > (lastbcast + TIMER_RATE + (TIMER_RATE * 2 / 3))) {
/freebsd-10.1-release/usr.sbin/cron/cron/
H A Dcron.c397 struct timespec ctime, ttime, stime, remtime; local
405 ttime.tv_sec = TargetTime;
406 ttime.tv_nsec = 0;
407 timespec_subtract(&stime, &ttime, &ctime);
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar.c1207 int ttime; local
1286 ttime = archive_le32dec(file_header.file_time);
1287 rar->mtime = get_time(ttime);
1627 get_time(int ttime) argument
1630 tm.tm_sec = 2 * (ttime & 0x1f);
1631 tm.tm_min = (ttime >> 5) & 0x3f;
1632 tm.tm_hour = (ttime >> 11) & 0x1f;
1633 tm.tm_mday = (ttime >> 16) & 0x1f;
1634 tm.tm_mon = ((ttime >> 21) & 0x0f) - 1;
1635 tm.tm_year = ((ttime >> 2
1644 int ttime, i; local
[all...]
/freebsd-10.1-release/usr.bin/at/
H A Dat.c116 static time_t ttime(const char *arg);
636 ttime(const char *arg) function
815 timer = ttime(optarg);

Completed in 217 milliseconds