Searched refs:ttime (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/ntp/ntpd/ |
| H A D | ntp_leapsec.c | 32 vint64 ttime; /* transition time (after the step, ntp scale) */ 47 vint64 ttime; /* nominal transition time (next era start) */ 168 vint64 ttime, limit; in leapsec_clear() 200 ttime = strtouv64(cp, &ep, 10); in leapsec_load() 208 if (ucmpv64(&ttime, &limit) >= 0) { in leapsec_load() 209 if (!leapsec_raw(pt, &ttime, in leapsec_load() 215 pt->lsig.ttime = ttime.D_s.lo; in leapsec_load() 248 ts = pt->info[idx].ttime; 310 last = pt->head.ttime; in leapsec_query() 54 vint64 ttime; /* transition time (after the step, ntp scale) */ global() member 69 vint64 ttime; /* nominal transition time (next era start) */ global() member 188 vint64 ttime, limit; leapsec_load() local 954 vint64 ttime, starttime; leapsec_add() local 1002 leapsec_raw(leap_table_t * pt,const vint64 * ttime,int taiof,int dynls) leapsec_raw() argument [all...] |
| H A D | ntp_leapsec.h | 69 vint64 ttime; /* era end (UTC of next leap second) */ member 96 vint64 ttime; member 117 uint32_t ttime; /* transition time */ member 219 extern int/*BOOL*/ leapsec_add_fix(int offset, uint32_t ttime, uint32_t etime,
|
| H A D | ntp_timer.c | 607 leap_smear.intv_end = lsdata.ttime.Q_s; in check_leapsec()
|
| H A D | ntp_util.c | 545 fstostr(lsig.ttime), in stats_config()
|
| H A D | ntp_crypto.c | 1901 if ( ! memcmp(&leap_data.ebase, &leap_data.ttime, sizeof(vint64))) { in crypto_update() 1921 if (leap_data.ttime.d_s.hi >= 0) in crypto_update() 1922 ptr[2] = htonl(leap_data.ttime.D_s.lo + 7*86400); in crypto_update()
|
| H A D | ntp_control.c | 2116 if (lsig.ttime > 0) in ctl_putsys() 2117 ctl_putfs(sys_var[CS_LEAPTAB].text, lsig.ttime); in ctl_putsys()
|
| /freebsd/usr.sbin/cron/cron/ |
| H A D | cron.c | 394 struct timespec ctime, ttime, stime, remtime; local 402 ttime.tv_sec = TargetTime; 403 ttime.tv_nsec = 0; 404 timespec_subtract(&stime, &ttime, &ctime);
|
| /freebsd/usr.bin/at/ |
| H A D | at.c | 117 static time_t ttime(const char *arg); 637 ttime(const char *arg) in ttime() function 816 timer = ttime(optarg); in main()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_read_support_format_rar.c | 1376 int ttime; in read_header() local 1464 ttime = archive_le32dec(file_header.file_time); in read_header() 1465 rar->mtime = get_time(ttime); in read_header() 1876 get_time(int ttime) in get_time() argument 1879 tm.tm_sec = 2 * (ttime & 0x1f); in get_time() 1880 tm.tm_min = (ttime >> 5) & 0x3f; in get_time() 1881 tm.tm_hour = (ttime >> 11) & 0x1f; in get_time() 1882 tm.tm_mday = (ttime >> 16) & 0x1f; in get_time() 1883 tm.tm_mon = ((ttime >> 21) & 0x0f) - 1; in get_time() 1884 tm.tm_year = ((ttime >> 25) & 0x7f) + 80; in get_time() [all …]
|