/src/lib/libc/time/ |
checktab.awk | 3 # Check tz tables for consistency. 112 tz = $3 120 tztab[tz] = 1 121 tz2comments[tz] = comments 122 tz2NR[tz] = zone_NR 125 cctz = cc tz 145 tz = substr (cctz, 3) 147 comments_needed[tz] = cc 152 tz = substr (cctz, 3) 153 if (!comments_needed[tz] && tz2comments[tz]) [all...] |
zdump.c | 230 mktime_z(timezone_t tz, struct tm *tmp) 245 if (setenv("TZ", val, 1) != 0) { 254 static char const TZeq[TZeqlen] = "TZ="; 344 my_localtime_rz(timezone_t tz, const time_t *tp, struct tm *tmp) 346 tmp = localtime_rz(tz, tp, tmp); 352 t = mktime_z(tz, &tm); 586 timezone_t tz = tzalloc(strcmp(argv[i], "-") == 0 local in function:main 593 if (!tz) { 597 show(tz, argv[i], now, false); 598 tzfree(tz); [all...] |
tzselect.ksh | 2 # Ask the user about the time zone, and output the resulting TZ value to stdout. 7 REPORT_BUGS_TO=tz@iana.org 357 fmt = "TZ='\''%s'\'' date +'\''%d %%Y %%m %%d %%H:%%M %%a %%b\t%s'\''\n" 391 'Please select a continent, ocean, "coord", "TZ", "time", or "now".' 428 "TZ - I want to specify the timezone using a proleptic TZ string." \ 451 TZ) 452 # Ask the user for a proleptic TZ string. Check that it conforms. 455 tz = substr(ARGV[1], 2) 469 exit tz ~ tzpatter [all...] |
Makefile | 31 BUGEMAIL= tz@iana.org 56 # The POSIXRULES macro controls interpretation of POSIX-like TZ 57 # settings like TZ='EET-2EEST' that lack DST transition rules. 275 # not needed by the main-program tz code, which is single-threaded. 279 # -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz" 283 # DST transitions for proleptic format TZ strings lacking them, 287 # It also mishandles settings like TZ='EET-2EEST' for eastern Europe, 364 # # and later, its contents are unspecified if you use a geographical TZ 377 # # although their contents are unspecified if you use a geographical TZ 557 # When comparing .tzs files, use GNU diff's -F'^TZ=' option if supported [all...] |
strptime.c | 121 timezone_t tz; local in function:fromzone 133 tz = tzalloc(buf); 134 if (tz == NULL) 140 tm->TM_GMTOFF = tzgetgmtoff(tz, tm->tm_isdst); 146 tzfree(tz);
|
/src/lib/libcompat/4.1/ |
ftime.c | 53 struct timezone tz; local in function:ftime 58 if (gettimeofday(&t, &tz) < 0) 62 tbp->timezone = tz.tz_minuteswest; 63 tbp->dstflag = tz.tz_dsttime;
|
/src/sys/fs/cd9660/ |
cd9660_node.c | 249 int y, m, d, hour, minute, second, tz; local in function:cd9660_tstamp_conv7 257 tz = pi[6]; 278 if (-48 <= tz && tz <= 52) 279 crtime -= tz * 15 * 60;
|
/src/sys/arch/hpc/stand/hpcboot/ |
hpcmenu.cpp | 334 TIME_ZONE_INFORMATION tz; local in function:HpcMenuInterface::setup_bootinfo 335 DWORD tzid = GetTimeZoneInformation(&tz); 348 bi.timezone = tz.Bias; 350 bi.timezone += tz.DaylightBias;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_syscalls.inc | 219 PRE_SYSCALL(gettimeofday)(void *tv, void *tz) {} 221 POST_SYSCALL(gettimeofday)(long res, void *tv, void *tz) { 224 if (tz) POST_WRITE(tz, struct_timezone_sz); 228 PRE_SYSCALL(settimeofday)(void *tv, void *tz) {} 230 POST_SYSCALL(settimeofday)(long res, void *tv, void *tz) { 233 if (tz) POST_WRITE(tz, struct_timezone_sz);
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
mt8127.dtsi | 20 enable-method = "mediatek,mt81xx-tz-smp";
|
mt8135.dtsi | 43 enable-method = "mediatek,mt81xx-tz-smp";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/socionext/ |
uniphier-ld20-akebi96.dts | 97 compatible = "linaro,optee-tz";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/mediatek/ |
pumpkin-common.dtsi | 21 compatible = "linaro,optee-tz";
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/ti/ |
k3-am64.dtsi | 39 compatible = "linaro,optee-tz";
|
k3-am65.dtsi | 40 compatible = "linaro,optee-tz";
|
k3-j7200.dtsi | 98 compatible = "linaro,optee-tz";
|
k3-j721e.dtsi | 99 compatible = "linaro,optee-tz";
|
/src/usr.bin/pr/ |
pr.c | 1302 struct timezone tz; local in function:nxtfile 1323 if (gettimeofday(&tv, &tz) < 0) { 1347 if (gettimeofday(&tv, &tz) < 0) { 1379 if (gettimeofday(&tv, &tz) < 0) {
|
/src/sys/dev/bluetooth/ |
btmagic.c | 1317 int id, nf, az, aw, tz, tw; local in function:btmagic_input_magicm 1359 tz = az - sc->sc_az[id]; 1364 dz += btmagic_scale(tz, &sc->sc_rz, 1368 } else if (abs(tz) > sc->sc_dist
|
/src/sys/arch/hpcmips/stand/pbsdboot/ |
main.c | 810 TIME_ZONE_INFORMATION tz; local in function:SetBootInfo 812 GetTimeZoneInformation(&tz); 824 bi->timezone = tz.Bias;
|
/src/sys/external/bsd/compiler_rt/dist/include/sanitizer/ |
linux_syscall_hooks.h | 32 #define __sanitizer_syscall_pre_gettimeofday(tv, tz) \ 33 __sanitizer_syscall_pre_impl_gettimeofday((long)(tv), (long)(tz)) 34 #define __sanitizer_syscall_post_gettimeofday(res, tv, tz) \ 35 __sanitizer_syscall_post_impl_gettimeofday(res, (long)(tv), (long)(tz)) 36 #define __sanitizer_syscall_pre_settimeofday(tv, tz) \ 37 __sanitizer_syscall_pre_impl_settimeofday((long)(tv), (long)(tz)) 38 #define __sanitizer_syscall_post_settimeofday(res, tv, tz) \ 39 __sanitizer_syscall_post_impl_settimeofday(res, (long)(tv), (long)(tz)) 2020 void __sanitizer_syscall_pre_impl_gettimeofday(long tv, long tz); 2021 void __sanitizer_syscall_post_impl_gettimeofday(long res, long tv, long tz); [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_interceptors.cc | 599 INTERCEPTOR(int, gettimeofday, void *tv, void *tz) { 601 int res = REAL(gettimeofday)(tv, tz); 604 if (tz) 605 __msan_unpoison(tz, 8);
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/ |
platform.h | 153 int16_t tz; member in struct:xenpf_efi_time
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/ |
msm8916-samsung-a2015-common.dtsi | 20 tz-apps@85500000 {
|
/src/sbin/newfs_udf/ |
udf_core.c | 849 uint16_t tz; local in function:udf_timestamp_to_timespec 887 tz = udf_rw16(timestamp->type_tz); 888 tz &= 0x0fff; /* only lower 12 bits are significant */ 889 if (tz & 0x0800) /* sign extension */ 890 tz |= 0xf000; 896 if ((int16_t) tz != -2047) 897 secs -= (int16_t) tz * 60;
|