Home
last modified time | relevance | path

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

1234567

/freebsd/contrib/tzdata/
H A Dchecktab.awk1 # Check tz tables for consistency.
76 tz = $3
81 if (tztab[tz]) {
83 zone_table, zone_NR, tz, tz2NR[tz]
98 tz0 = tz
99 tztab[tz] = 1
100 tz2NR[tz] = zone_NR
150 tz = rules = stdoff = ""
152 tz
[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
24 “Theory and pragmatics of the tz code and data”
27 <https://lists.iana.org/hyperkitty/list/tz@iana.org/>
45 git clone https://github.com/eggert/tz.git
46 cd tz
69 make TOPDIR=$PWD/tz clean check install
91 * After reviewing the patch files, send the patches to <tz@iana.org>
98 <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 DMakefile44 BUGEMAIL= tz@iana.org
649 WEB_PAGES= tz-art.html tz-how-to.html tz-link.html
650 CHECK_WEB_PAGES=theory.ck tz-art.ck tz-how-to.ck tz-link.ck
693 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/crypto/openssl/test/testutil/
H A Dhelper.c31 char *tz = NULL; in test_asn1_string_to_time_t() local
62 tz = getenv("TZ"); in test_asn1_string_to_time_t()
63 if (tz != NULL) { in test_asn1_string_to_time_t()
64 tz = OPENSSL_strdup(tz); in test_asn1_string_to_time_t()
65 if (tz == NULL) { in test_asn1_string_to_time_t()
74 if (tz != NULL) { in test_asn1_string_to_time_t()
75 setenv("TZ", tz, 1); in test_asn1_string_to_time_t()
76 OPENSSL_free(tz); in test_asn1_string_to_time_t()
/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.c219 mktime_z(timezone_t tz, struct tm *tmp) in mktime_z() argument
340 my_localtime_rz(timezone_t tz, time_t *tp, struct tm *tmp) in my_localtime_rz() argument
342 tmp = localtime_rz(tz, tp, tmp); in my_localtime_rz()
348 t = mktime_z(tz, &tm); in my_localtime_rz()
584 timezone_t tz = tzalloc(strcmp(argv[i], "-") == 0 in main() local
590 if (!tz) { in main()
597 show(tz, argv[i], now, false); in main()
598 tzfree(tz); in main()
604 show(tz, argv[i], t, true); in main()
605 if (my_localtime_rz(tz, &t, &tm) == NULL in main()
[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
24 “Theory and pragmatics of the tz code and data”
27 <https://lists.iana.org/hyperkitty/list/tz@iana.org/>
45 git clone https://github.com/eggert/tz.git
46 cd tz
69 make TOPDIR=$PWD/tz clean check install
91 * After reviewing the patch files, send the patches to <tz@iana.org>
98 <https://mm.icann.org/pipermail/tz/2018-February/026122.html>.
H A Dtzselect.ksh7 REPORT_BUGS_TO=tz@iana.org
457 tz = substr(ARGV[1], 2)
471 exit tz ~ tzpattern
485 say >&2 "'$tz' is not a conforming POSIX proleptic TZ string."
731 TZ_for_date=$TZDIR/$tz
801 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.
H A DMakefile44 BUGEMAIL= tz@iana.org
649 WEB_PAGES= tz-art.html tz-how-to.html tz-link.html
650 CHECK_WEB_PAGES=theory.ck tz-art.ck tz-how-to.ck tz-link.ck
693 time2posix.3 tz-art.html tz-how-to.html tz-link.html \
/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/crypto/krb5/src/windows/leashdll/
H A Dtimesync.c33 struct timezone *tz in settimeofday() argument
56 struct timezone *tz in gettimeofday() argument
66 if (tz) { in gettimeofday()
67 tz->tz_minuteswest = tb.timezone; in gettimeofday()
68 tz->tz_dsttime = tb.dstflag; in gettimeofday()
224 struct timezone tz; in ProcessTimeSync() local
253 if (gettimeofday (&tv, &tz) < 0) in ProcessTimeSync()
280 if (settimeofday(&tv, &tz) < 0) in ProcessTimeSync()
/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/contrib/bmake/
H A Dutil.c547 char tz[20]; in strftime() local
549 i = snprintf(tz, sizeof(tz), "%s", cp); in strftime()
551 cp = &tz[i - 3]; in strftime()
552 tz[3] = '\0'; in strftime()
554 cp = tz; in strftime()
556 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/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/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/contrib/device-tree/src/arm64/qcom/
H A Dmsm8916-samsung-j3-common.dtsi7 /delete-node/ tz-apps@85500000;
10 tz-apps@85800000 {
/freebsd/sys/contrib/device-tree/Bindings/arm/firmware/
H A Dlinaro,optee-tz.txt12 - compatible : should contain "linaro,optee-tz"
28 compatible = "linaro,optee-tz";
/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()

1234567