Home
last modified time | relevance | path

Searched refs:tz (Results 1 – 25 of 142) sorted by relevance

123456

/freebsd/contrib/tzdata/
H A Dchecktab.awk63 tz = $3
79 tz0 = tz
80 tztab[tz] = 1
81 tz2NR[tz] = zone_NR
131 tz = rules = ""
133 tz = $2
151 if (tz && tz ~ /\// && tz !~ /^Etc\//) {
158 zoneSeen[tz] = 1
175 for (tz in tztab) {
176 if (!zoneSeen[tz] && tz !~ /^Etc\//) {
[all …]
H A Dchecklinks.awk47 for (tz in used) {
48 if (defined[tz] != Zone) {
49 if (!defined[tz]) {
50 printf "%s: Link to nowhere\n", tz
53 printf "%s: Link to link\n", tz
58 for (tz in shortcut) {
59 if (defined[shortcut[tz]] != defined[tz]) {
60 target = (!defined[tz] ? "absence" \
61 : defined[tz] == "\n" ? "zone" \
62 : defined[tz])
[all …]
H A DCONTRIBUTING1 # Contributing to the tz code and data
12 to <tz@iana.org> for use in the future. In your email, please give
23 "Theory and pragmatics of the tz code and data"
26 <https://mm.icann.org/pipermail/tz/> for examples of patches that tend
44 git clone https://github.com/eggert/tz.git
45 cd tz
83 * After reviewing the patch files, send the patches to <tz@iana.org>
90 <https://mm.icann.org/pipermail/tz/2018-February/026122.html>.
H A DREADME1 README for the tz distribution
7 The Time Zone Database (called tz, tzdb or zoneinfo) contains code and
13 See <https://www.iana.org/time-zones/repository/tz-link.html> or the
14 file tz-link.html for how to acquire the code and data.
26 See the file tz-how-to.html for examples of how to read the data files.
H A DMakefile31 BUGEMAIL= tz@iana.org
581 WEB_PAGES= tz-art.html tz-how-to.html tz-link.html
626 time2posix.3 tz-art.html tz-how-to.html tz-link.html \
/freebsd/contrib/sendmail/src/
H A Darpadate.c66 char *tz; variable
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 != '\0')
195 while (*tz != '\0' && q < &b[sizeof(b) - 3])
[all …]
/freebsd/contrib/ldns/compat/
H A Dtimegm.c16 char *tz; in timegm() local
18 tz = getenv("TZ"); in timegm()
22 if (tz) { in timegm()
24 snprintf(buf, sizeof(buf), "TZ=%s", tz); in timegm()
25 putenv(tz); in timegm()
/freebsd/contrib/tzcode/
H A Dzdump.c363 tmp = localtime_rz(tz, tp, tmp); in my_localtime_rz()
369 t = mktime_z(tz, &tm); in my_localtime_rz()
599 timezone_t tz = tzalloc(argv[i]); in main() local
604 if (!tz) { in main()
611 show(tz, argv[i], now, false); in main()
612 tzfree(tz); in main()
618 show(tz, argv[i], t, true); in main()
677 tzfree(tz); in main()
866 tmp = my_localtime_rz(tz, &t, &tm); in show()
924 show(tz, zone, t - 1, true); in showextrema()
[all …]
H A DCONTRIBUTING1 # Contributing to the tz code and data
12 to <tz@iana.org> for use in the future. In your email, please give
23 "Theory and pragmatics of the tz code and data"
26 <https://mm.icann.org/pipermail/tz/> for examples of patches that tend
44 git clone https://github.com/eggert/tz.git
45 cd tz
83 * After reviewing the patch files, send the patches to <tz@iana.org>
90 <https://mm.icann.org/pipermail/tz/2018-February/026122.html>.
H A Dtzselect.ksh7 REPORT_BUGS_TO=tz@iana.org
468 tz = substr(ARGV[1], 2)
481 exit tz ~ tzpattern
495 say >&2 "'$tz' is not a conforming POSIX.1-2017 timezone string."
742 TZ_for_date=$TZDIR/$tz
815 say "$tz"
H A DREADME1 README for the tz distribution
7 The Time Zone Database (called tz, tzdb or zoneinfo) contains code and
13 See <https://www.iana.org/time-zones/repository/tz-link.html> or the
14 file tz-link.html for how to acquire the code and data.
26 See the file tz-how-to.html for examples of how to read the data files.
/freebsd/sbin/adjkerntz/
H A Dadjkerntz.c74 struct timezone tz, *stz; in main() local
159 if (gettimeofday(&tv, &tz)) { in main()
205 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main()
257 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main()
271 if (tz.tz_dsttime != 0 || tz.tz_minuteswest != 0) { in main()
272 tz.tz_dsttime = tz.tz_minuteswest = 0; /* zone info is garbage */ in main()
273 stz = &tz; in main()
/freebsd/lib/libutil/
H A Dftime.c42 struct timezone tz; in ftime() local
45 if (gettimeofday(&t, &tz) < 0) in ftime()
49 tbp->timezone = tz.tz_minuteswest; in ftime()
50 tbp->dstflag = tz.tz_dsttime; in ftime()
/freebsd/lib/libsys/
H A Dgettimeofday.c34 int __gettimeofday(struct timeval *tv, struct timezone *tz);
39 __gettimeofday(struct timeval *tv, struct timezone *tz) in __gettimeofday() argument
43 error = __vdso_gettimeofday(tv, tz); in __gettimeofday()
45 error = __sys_gettimeofday(tv, tz); in __gettimeofday()
/freebsd/sys/fs/cd9660/
H A Dcd9660_node.c202 int y, m, d, hour, minute, second, tz; in cd9660_tstamp_conv7() local
211 tz = ((signed char *)pi)[6]; /* Timezone value is signed. */ in cd9660_tstamp_conv7()
214 tz = 0; in cd9660_tstamp_conv7()
235 if (-48 <= tz && tz <= 52) in cd9660_tstamp_conv7()
236 crtime -= tz * 15 * 60; in cd9660_tstamp_conv7()
/freebsd/sys/contrib/device-tree/Bindings/arm/firmware/
H A Dlinaro,optee-tz.yaml4 $id: http://devicetree.org/schemas/arm/firmware/linaro,optee-tz.yaml#
25 const: linaro,optee-tz
55 compatible = "linaro,optee-tz";
64 compatible = "linaro,optee-tz";
H A Dlinaro,optee-tz.txt12 - compatible : should contain "linaro,optee-tz"
28 compatible = "linaro,optee-tz";
/freebsd/contrib/ncurses/include/
H A Dwin32_curses.h72 #define gettimeofday(tv,tz) _nc_gettimeofday(tv,tz) argument
H A Dnc_mingw.h54 #define gettimeofday(tv,tz) _nc_gettimeofday(tv,tz) argument
/freebsd/contrib/bmake/
H A Dutil.c543 char tz[20]; in strftime() local
545 i = snprintf(tz, sizeof(tz), "%s", cp); in strftime()
547 cp = &tz[i - 3]; in strftime()
548 tz[3] = '\0'; in strftime()
550 cp = tz; in strftime()
552 tm->tm_isdst ? cp : tz); in strftime()
/freebsd/sys/amd64/linux/
H A Dlinux_vdso_gtod.c86 __vdso_gettimeofday_fallback(l_timeval *tv, struct timezone *tz) in __vdso_gettimeofday_fallback() argument
94 : "a"(LINUX_SYS_gettimeofday), "D"(tv), "S"(tz) in __vdso_gettimeofday_fallback()
/freebsd/sys/amd64/linux32/
H A Dlinux32_vdso_gtod.c100 __vdso_gettimeofday_fallback(l_timeval *tv, struct timezone *tz) in __vdso_gettimeofday_fallback() argument
108 : "a"(LINUX32_SYS_linux_gettimeofday), "b"(tv), "c"(tz) in __vdso_gettimeofday_fallback()
/freebsd/sys/i386/linux/
H A Dlinux_vdso_gtod.c100 __vdso_gettimeofday_fallback(l_timeval *tv, struct timezone *tz) in __vdso_gettimeofday_fallback() argument
108 : "a"(LINUX_SYS_gettimeofday), "b"(tv), "c"(tz) in __vdso_gettimeofday_fallback()
/freebsd/sys/arm64/linux/
H A Dlinux_vdso_gtod.c88 register struct timezone *tz asm("x1") = ltz; in __vdso_gettimeofday_fallback()
94 : "r" (tv), "r" (tz), "r" (svc) in __vdso_gettimeofday_fallback()
/freebsd/contrib/ntp/scripts/monitoring/
H A Dntploopstat126 eval 'sub time { local($tz) = pack("LL",0,0);
129 unless syscall(&SYS_gettimeofday,$tz,undef) == 0;
130 local($s,$us) = unpack("LL",$tz);

123456