Searched refs:tz (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-11-stable/contrib/tzdata/
H A Dchecktab.awk1 # Check tz tables for consistency.
64 tz = $3
78 tz0 = tz
79 tztab[tz] = 1
80 tz2comments[tz] = comments
81 tz2NR[tz] = zone_NR
84 cctz = cc tz
104 tz = substr (cctz, 3)
106 comments_needed[tz] = cc
111 tz
[all...]
H A Dchecklinks.awk1 # Check links in tz tables.
40 for (tz in used) {
41 if (defined[tz] != Zone) {
42 printf "%s: Link to non-zone\n", tz
H A DMakefile13 BUGEMAIL= tz@iana.org
233 # not needed by the main-program tz code, which is single-threaded.
237 # -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz"
502 WEB_PAGES= tz-art.html tz-how-to.html tz-link.html
545 time2posix.3 tz-art.html tz-how-to.html tz-link.html \
685 # tz release
[all...]
/freebsd-11-stable/contrib/ldns/compat/
H A Dtimegm.c16 char *tz; local
18 tz = getenv("TZ");
22 if (tz) {
24 snprintf(buf, sizeof(buf), "TZ=%s", tz);
25 putenv(tz);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dgettimeofday.c12 @deftypefn Supplemental int gettimeofday (struct timeval *@var{tp}, void *@var{tz})
15 that @var{tz} be NULL. Returns 0 on success, -1 on failure.
22 gettimeofday (struct timeval *tp, void *tz) argument
24 if (tz)
/freebsd-11-stable/lib/libc/sys/
H A Dgettimeofday.c35 int __gettimeofday(struct timeval *tv, struct timezone *tz);
40 __gettimeofday(struct timeval *tv, struct timezone *tz) argument
44 error = __vdso_gettimeofday(tv, tz);
46 error = __sys_gettimeofday(tv, tz);
H A D__vdso_gettimeofday.c96 __vdso_gettimeofday(struct timeval *tv, struct timezone *tz) argument
101 if (tz != NULL)
/freebsd-11-stable/lib/libcompat/4.1/
H A Dftime.c42 struct timezone tz; local
45 if (gettimeofday(&t, &tz) < 0)
49 tbp->timezone = tz.tz_minuteswest;
50 tbp->dstflag = tz.tz_dsttime;
/freebsd-11-stable/contrib/sendmail/src/
H A Darpadate.c66 char *tz; local
149 tz = NULL;
151 tz = lt->tm_name;
154 tz = lt->tm_zone;
161 tz = tzname[1];
163 tz = tzname[0];
165 tz = NULL;
172 tz = timezone(off, lt->tm_isdst);
191 if (tz != NULL && *tz !
[all...]
/freebsd-11-stable/contrib/ncurses/include/
H A Dnc_mingw.h52 #define gettimeofday(tv,tz) _nc_gettimeofday(tv,tz)
/freebsd-11-stable/contrib/ncurses/ncurses/win32con/
H A Dgettimeofday.c40 gettimeofday(struct timeval *tv, void *tz GCC_UNUSED)
/freebsd-11-stable/sbin/adjkerntz/
H A Dadjkerntz.c84 struct timezone tz, *stz; local
169 if (gettimeofday(&tv, &tz)) {
215 diff = offset - tz.tz_minuteswest * 60 - kern_offset;
267 diff = offset - tz.tz_minuteswest * 60 - kern_offset;
281 if (tz.tz_dsttime != 0 || tz.tz_minuteswest != 0) {
282 tz.tz_dsttime = tz.tz_minuteswest = 0; /* zone info is garbage */
283 stz = &tz;
/freebsd-11-stable/sys/fs/cd9660/
H A Dcd9660_node.c226 int y, m, d, hour, minute, second, tz; local
235 tz = ((signed char *)pi)[6]; /* Timezone value is signed. */
238 tz = 0;
259 if (-48 <= tz && tz <= 52)
260 crtime -= tz * 15 * 60;
/freebsd-11-stable/bin/date/
H A Ddate.c78 struct timezone tz; local
94 tz.tz_dsttime = tz.tz_minuteswest = 0;
101 tz.tz_dsttime = strtol(optarg, &endptr, 10) ? 1 : 0;
130 tz.tz_minuteswest = strtol(optarg, &endptr, 10);
151 if (set_timezone && settimeofday(NULL, &tz) != 0)
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm_pass3.c62 char *tz; local
74 tz = getenv("TZ"); local
102 if (tz) {
103 if (setenv("TZ", tz, 1) < 0) WRONGDATE
/freebsd-11-stable/sys/sys/
H A Dvdso.h67 int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz);
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_wwvb.c257 int tz; /* time zone */ local
322 tz = 0;
333 &pp->second, &tmpchar, &dstchar, &tz) == 8) {
H A Drefclock_acts.c747 int tz; /* WWVB timezone */ local
850 &pp->second, &dstchar, &tz) != 7) {
/freebsd-11-stable/contrib/ofed/opensm/libvendor/
H A Dosm_pkt_randomizer.c137 struct timezone tz; local
147 gettimeofday(&tv, &tz);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc218 PRE_SYSCALL(gettimeofday)(void *tv, void *tz) {}
220 POST_SYSCALL(gettimeofday)(long res, void *tv, void *tz) {
223 if (tz) POST_WRITE(tz, struct_timezone_sz);
227 PRE_SYSCALL(settimeofday)(void *tv, void *tz) {}
229 POST_SYSCALL(settimeofday)(long res, void *tv, void *tz) {
232 if (tz) POST_WRITE(tz, struct_timezone_sz);
/freebsd-11-stable/contrib/bzip2/
H A Dblocksort.c610 { Int32 tz; \
611 tz = nextLo[az]; nextLo[az] = nextLo[bz]; nextLo[bz] = tz; \
612 tz = nextHi[az]; nextHi[az] = nextHi[bz]; nextHi[bz] = tz; \
613 tz = nextD [az]; nextD [az] = nextD [bz]; nextD [bz] = tz; }
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dutil.h543 #define evutil_gettimeofday(tv, tz) gettimeofday((tv), (tz))
547 int evutil_gettimeofday(struct timeval *tv, struct timezone *tz);
/freebsd-11-stable/sys/fs/udf/
H A Dudf_vnops.c219 } tz; local
271 tz.u_tz_offset = le16toh(time->type_tz);
272 tz.u_tz_offset &= 0x0fff;
273 if (tz.u_tz_offset & 0x0800)
274 tz.u_tz_offset |= 0xf000; /* extend the sign to 16 bits */
275 if ((le16toh(time->type_tz) & 0x1000) && (tz.s_tz_offset != -2047))
276 t->tv_sec -= tz.s_tz_offset * 60;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dx509parse.c435 char tz; local
457 &xt.tm_hour, &xt.tm_min, &xt.tm_sec, &tz) < 6)
471 &xt.tm_hour, &xt.tm_min, &xt.tm_sec, &tz) < 6)
490 if (tz != 'Z')
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devutil_time.c62 evutil_gettimeofday(struct timeval *tv, struct timezone *tz) argument

Completed in 323 milliseconds

12