Home
last modified time | relevance | path

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

12

/dragonfly/contrib/diffutils/lib/
H A Dtime_rz.c100 if (tz) in tzalloc()
104 tz->tzname_copy[0] = tz->tzname_copy[1] = NULL; in tzalloc()
111 return tz; in tzalloc()
164 tz = tz->next = tzalloc (zone); in save_abbr()
176 tz = tz->next; in save_abbr()
199 while (tz) in tzfree()
222 return tz ? setenv ("TZ", tz, 1) : unsetenv ("TZ"); in setenv_TZ()
231 if (setenv_TZ (tz->tz_is_set ? tz->abbrs : NULL) != 0) in change_env()
246 ? tz->tz_is_set && strcmp (tz->abbrs, env_tz) == 0 in set_tz()
304 if (!tz) in localtime_rz()
[all …]
H A Dnstrftime.c134 # define mktime_z(tz, tm) mktime (tm) argument
402 # define extra_args , tz, ns
403 # define extra_args_spec , timezone_t tz, int ns
415 # define tz 1 macro
525 if (!tz) in libc_hidden_def()
534 tzname_vec = tz->tzname_copy; in libc_hidden_def()
1208 t = mktime_z (tz, &ltm); in libc_hidden_def()
1422 if (!tz) in libc_hidden_def()
1442 lt = mktime_z (tz, &ltm); in libc_hidden_def()
H A Dmktime.c94 const char *tz = getenv ("TZ"); in my_tzset() local
95 if (tz != NULL && strchr (tz, '/') != NULL) in my_tzset()
/dragonfly/sbin/adjkerntz/
H A Dadjkerntz.c76 struct timezone tz, *stz; in main() local
156 if (gettimeofday(&tv, &tz)) { in main()
202 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main()
254 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main()
268 if (tz.tz_dsttime != 0 || tz.tz_minuteswest != 0) { in main()
269 tz.tz_dsttime = tz.tz_minuteswest = 0; /* zone info is garbage */ in main()
270 stz = &tz; in main()
/dragonfly/lib/libc/upmap/
H A Dukp_gettimeofday.c63 __gettimeofday(struct timeval *tv, struct timezone *tz) in __gettimeofday() argument
75 if (fast_clock > 0 && *fast_gtod && tz == NULL) { in __gettimeofday()
89 res = __sys_gettimeofday(tv, tz); in __gettimeofday()
97 __gettimeofday(struct timeval *tv, struct timezone *tz) in __gettimeofday() argument
101 res = __sys_gettimeofday(tv, tz); in __gettimeofday()
/dragonfly/lib/libcompat/4.1/
H A Dftime.c41 struct timezone tz; in ftime() local
44 if (gettimeofday(&t, &tz) < 0) in ftime()
48 tbp->timezone = tz.tz_minuteswest; in ftime()
49 tbp->dstflag = tz.tz_dsttime; in ftime()
/dragonfly/share/zoneinfo/
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. Once acquired,
23 See the file tz-how-to.html for examples of how to read the data files.
H A DNEWS1 News for the tz database
1413 The files tz-art.htm and tz-link.htm have been renamed to
1414 tz-art.html and tz-link.html, respectively, for consistency with
3118 tz-link.htm now mentions GNOME.
3807 Add web page links to tz.js.
3948 are entirely to the README and tz-art.htm and tz-link.htm files, if
3952 has been added to tz-link.htm).
4335 project in tz-link.htm
4660 changes to tz-link.htm by Paul
4775 tz-art.htm has been HTMLified.
[all …]
H A Detcetera6 # These entries are for uses not otherwise covered by the tz database.
H A Dasia8 # tz@iana.org for general use in the future). For more, please see
9 # the file CONTRIBUTING in the tz distribution.
1908 # https://mm.icann.org/pipermail/tz/2018-November/027194.html
1987 # ftp://ftp.cs.huji.ac.il/pub/tz/announcements/YYYY.ps.gz
2007 # ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2000-start.ps.gz
2012 # ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2000-2004.ps.gz
2034 # ftp://ftp.cs.huji.ac.il/pub/tz/announcements/2005+beyond.ps
2050 # ftp://ftp.cs.huji.ac.il/pub/tz/israel/announcements/2013+law.pdf
2593 # https://mm.icann.org/pipermail/tz/2014-October/021830.html
2855 # +08:00 instead. Different sources appear to disagree with the tz
[all …]
/dragonfly/sys/vfs/isofs/cd9660/
H A Dcd9660_node.c346 int y, m, d, hour, minute, second, tz; in cd9660_tstamp_conv7() local
355 tz = pi[6]; in cd9660_tstamp_conv7()
358 tz = 0; in cd9660_tstamp_conv7()
379 if (-48 <= tz && tz <= 52) in cd9660_tstamp_conv7()
380 crtime -= tz * 15 * 60; in cd9660_tstamp_conv7()
/dragonfly/sys/vfs/udf/
H A Dudf_vnops.c249 } tz; in udf_timetotimespec() local
286 tz.u_tz_offset = time->type_tz; in udf_timetotimespec()
287 tz.u_tz_offset &= 0x0fff; in udf_timetotimespec()
288 if (tz.u_tz_offset & 0x0800) in udf_timetotimespec()
289 tz.u_tz_offset |= 0xf000; /* extend the sign to 16 bits */ in udf_timetotimespec()
290 if ((time->type_tz & 0x1000) && (tz.s_tz_offset != -2047)) in udf_timetotimespec()
291 t->tv_sec -= tz.s_tz_offset * 60; in udf_timetotimespec()
/dragonfly/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; }
/dragonfly/crypto/libressl/crypto/asn1/
H A Da_time_tm.c239 uint8_t tz; in asn1_time_parse_cbs() local
286 if (!CBS_get_u8(&copy, &tz)) in asn1_time_parse_cbs()
288 if (tz != 'Z') in asn1_time_parse_cbs()
/dragonfly/usr.bin/pr/
H A Dpr.c1256 struct timezone tz; in nxtfile() local
1276 if (gettimeofday(&tv, &tz) < 0) { in nxtfile()
1300 if (gettimeofday(&tv, &tz) < 0) { in nxtfile()
1332 if (gettimeofday(&tv, &tz) < 0) { in nxtfile()
/dragonfly/sys/kern/
H A Dkern_time.c63 struct timezone tz; variable
669 error = copyout((caddr_t)&tz, (caddr_t)uap->tzp, in sys_gettimeofday()
670 sizeof (tz)); in sys_gettimeofday()
713 tz = atz; in sys_settimeofday()
/dragonfly/contrib/cvs-1.12/lib/
H A Dgetdate.c2562 char *tz = getenv ("TZ"); in get_tz() local
2563 if (tz) in get_tz()
2565 size_t tzsize = strlen (tz) + 1; in get_tz()
2566 tz = (tzsize <= TZBUFSIZE in get_tz()
2567 ? memcpy (tzbuf, tz, tzsize) in get_tz()
2568 : xmemdup (tz, tzsize)); in get_tz()
2570 return tz; in get_tz()
/dragonfly/usr.sbin/cron/crontab/
H A Dcrontab.c607 struct timezone tz; local
609 gettimeofday(&tvs[0], &tz);
/dragonfly/tools/regression/bin/sh/expansion/
H A Dpathname1.063 check '[tz]estdir/[*]/' 'testdir/*/'
/dragonfly/crypto/openssh/
H A Dauth-pam.c487 char *tz = getenv("TZ"); in sshpam_thread() local
495 if (tz != NULL) in sshpam_thread()
496 if (setenv("TZ", tz, 1) == -1) in sshpam_thread()
/dragonfly/sys/sys/
H A Dkernel.h76 extern struct timezone tz; /* XXX */
/dragonfly/lib/libalias/
H A Dalias_db.c2267 struct timezone tz; in HouseKeeping() local
2274 gettimeofday(&tv, &tz); in HouseKeeping()
2528 struct timezone tz; in PacketAliasInit() local
2533 gettimeofday(&tv, &tz); in PacketAliasInit()
/dragonfly/contrib/mpfr/src/
H A Dvasprintf.c594 const size_t tz, const char c) in buffer_sandwich() argument
597 const size_t size = len + tz; in buffer_sandwich()
606 buffer_pad (b, '0', tz); in buffer_sandwich()
/dragonfly/sys/platform/pc64/isa/
H A Dclock.c1122 sec += tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0); in inittodr()
1163 tm -= tz.tz_minuteswest * 60 + (wall_cmos_clock ? adjkerntz : 0); in resettodr()
/dragonfly/usr.bin/calendar/calendars/de_DE.UTF-8/
H A Dcalendar.geschichte38 07/03 Schlacht bei Königgrätz, 1866

12