Searched refs:utc (Results 1 - 16 of 16) sorted by relevance

/freebsd-current/usr.sbin/fifolog/fifolog_reader/
H A Dfifolog_reader.c53 static struct tm utc; local
66 (void)gmtime_r(&now, &utc);
67 i = strftime(buf, sizeof buf, opt_T, &utc);
/freebsd-current/sys/sys/
H A Dclock.h142 * Do not apply utc offset and resolution/accuracy adjustments to the value
146 * Do not apply utc offset and resolution/accuracy adjustments to the value
172 void timespec2fattime(const struct timespec *tsp, int utc, u_int16_t *ddp,
174 void fattime2timespec(unsigned dd, unsigned dt, unsigned dh, int utc,
/freebsd-current/lib/libsecureboot/h/
H A Dlibsecureboot.h64 void ve_utc_set(time_t utc);
/freebsd-current/sys/kern/
H A Dsubr_fattime.c51 * The 'utc' argument determines if the resulting FATTIME timestamp
138 timespec2fattime(const struct timespec *tsp, int utc, uint16_t *ddp, argument
145 if (!utc)
216 fattime2timespec(unsigned dd, unsigned dt, unsigned dh, int utc, argument
245 if (!utc)
/freebsd-current/contrib/ntp/util/
H A Dtg.c246 int utc = 0; /* option epoch */ variable
313 utc++;
351 if (!utc) {
H A Dtg2.c521 int utc = 0; /* option epoch */ variable
856 utc++;
1060 if (utc)
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_neoclock4x.c851 neol_localtime(unsigned long utc, argument
859 *sec = utc % 60;
860 utc /= 60;
861 *min = utc % 60;
862 utc /= 60;
863 *hour = utc % 24;
864 utc /= 24;
867 neol_jdn_to_ymd(utc + 2440588L, year, month, day);
H A Drefclock_acts.c730 char utc[10]; /* ACTS timescale */ local
771 &msADV, utc, &flag) != 13) {
794 &pp->second, utc) != 6) {
H A Drefclock_ripencc.c977 * Parse primary utc time packet
1453 * Parse primary utc time packet
3933 *utc; local
4030 utc = (UTC_INFO*)data_packet;
4031 pbuf += sprintf(pbuf, "\n A_0 = %g ", utc->A_0);
4032 pbuf += sprintf(pbuf, "\n A_1 = %g ", utc->A_1);
4033 pbuf += sprintf(pbuf, "\n delta_t_LS = %d ", utc->delta_t_LS);
4034 pbuf += sprintf(pbuf, "\n t_ot = %.0f ", utc->t_ot );
4035 pbuf += sprintf(pbuf, "\n WN_t = %d ", utc->WN_t );
4036 pbuf += sprintf(pbuf, "\n WN_LSF = %d ", utc
[all...]
H A Drefclock_parse.c4612 UTC utc; local
4618 get_mbg_utc(&bufp, &utc);
4620 if (utc.valid)
4623 mk_utcinfo(p, utc.t0t.wn, utc.WNlsf, utc.DNt, utc.delta_tls, utc.delta_tlsf, BUFFER_SIZE(buffer, p));
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_match.c1154 ULARGE_INTEGER utc; local
1158 utc.HighPart = ftCreationTime_dwHighDateTime;
1159 utc.LowPart = ftCreationTime_dwLowDateTime;
1160 if (utc.QuadPart >= EPOC_TIME) {
1161 utc.QuadPart -= EPOC_TIME;
1162 ctime_sec = (time_t)(utc.QuadPart / 10000000);
1163 ctime_ns = (long)(utc.QuadPart % 10000000) * 100;
1168 utc.HighPart = ftLastWriteTime_dwHighDateTime;
1169 utc.LowPart = ftLastWriteTime_dwLowDateTime;
1170 if (utc
[all...]
/freebsd-current/lib/libsecureboot/
H A Dvets.c189 * @param[in] utc
194 ve_utc_set(time_t utc) argument
196 if (utc > ve_utc &&
197 (ve_utc == 0 || (utc - ve_utc) < VE_UTC_MAX_JUMP)) {
198 DEBUG_PRINTF(2, ("Set ve_utc=%jd\n", (intmax_t)utc));
199 ve_utc = utc;
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dchrono.inc89 // [time.clock.utc], class utc_clock
/freebsd-current/usr.sbin/tzsetup/
H A Dtzsetup.c168 static struct continent australia, europe, indian, pacific, utc; variable in typeref:struct:
174 { "UTC", &utc },
/freebsd-current/contrib/tzcode/
H A Dlocaltime.c94 static char const *utc = etc_utc + sizeof "Etc/" - 1; variable
353 tzname[0] = tzname[1] = (char *) (sp ? wildabbr : utc);
1476 strcpy(sp->chars, utc);
1789 (offset ? wildabbr : gmtptr ? gmtptr->chars : utc));
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_fuchsia.cpp23 # include <zircon/utc.h>

Completed in 138 milliseconds