/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/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/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/external/gpl2/dts/dist/arch/arm64/boot/dts/qcom/ |
ipq6018.dtsi | 159 tz: memory@4a600000 { label
|
/src/lib/libc/time/ |
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);
|
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...] |
/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/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/bin/sh/ |
var.c | 1502 static struct space_reserved tzs; /* remember TZ last used */ 1505 char *tz; local in function:get_tod 1518 tz = lookupvar("TZ"); 1521 if (tz != NULL) { 1522 if (tzs.b == NULL || strcmp(tzs.b, tz) != 0) { 1524 if (make_space(&tzs, strlen(tz) + 1)) { 1525 strcpy(tzs.b, tz); 1528 last_zone = zone = tzalloc(tz); 1531 zone = tzalloc(tz); [all...] |
/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/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 2170 struct timezone tz; local in function:TEST 2172 break_optimization(&tz); 2174 ASSERT_EQ(8U, sizeof(tz)); 2177 EXPECT_POISONED(tz.tz_minuteswest); 2178 EXPECT_POISONED(tz.tz_dsttime); 2179 ASSERT_EQ(0, gettimeofday(&tv, &tz)); 2182 EXPECT_NOT_POISONED(tz.tz_minuteswest); 2183 EXPECT_NOT_POISONED(tz.tz_dsttime);
|
/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;
|
/src/sys/fs/udf/ |
udf_subr.c | 4291 uint16_t tz; local in function:udf_timestamp_to_timespec 4312 tz = udf_rw16(timestamp->type_tz); 4313 tz &= 0x0fff; /* only lower 12 bits are significant */ 4314 if (tz & 0x0800) /* sign extension */ 4315 tz |= 0xf000; 4320 if ((int16_t) tz != -2047) 4321 secs -= (int16_t) tz * 60;
|