/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | time.h | 19 int tm_hour; member in struct:tm
|
/vbox/src/VBox/Runtime/r3/posix/ |
H A D | timelocal-posix.cpp | 78 if ( TmLocal.tm_hour == TmUct.tm_hour 84 int LocalSecs = TmLocal.tm_hour * 3600 87 int UctSecs = TmUct.tm_hour * 3600
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/ |
H A D | rtc_time.c | 98 tm.tm_hour = hour; 107 tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec,
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | time.c | 32 * tm_sec + tm_min*60 + tm_hour*3600 + tm_yday*86400 + 127 ( ( ( ( tm->tm_hour * 60 ) + tm->tm_min ) * 60 ) + tm->tm_sec ); 133 tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, seconds,
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prtime.c | 154 gmt->tm_hour = rem / 3600; 291 numSecs = copy.tm_yday * 86400 + copy.tm_hour * 3600 353 time->tm_hour += time->tm_min / 60; 357 time->tm_hour--; 361 if (time->tm_hour < 0) { 363 time->tm_hour += 24; 381 } else if (time->tm_hour > 23) { 383 time->tm_hour -= 24; 438 time->tm_hour += time->tm_min / 60; 442 time->tm_hour [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/ |
H A D | TimeEfi.c | 37 BT->tm_hour = ET->Hour; 76 ET->Hour = (UINT8)BT->tm_hour;
|
H A D | strptime.c | 216 bp = conv_num(bp, &tm->tm_hour, 0, 23); 224 bp = conv_num(bp, &tm->tm_hour, 1, 12); 225 if (tm->tm_hour == 12) 226 tm->tm_hour = 0; 251 if (tm->tm_hour > 11) 253 tm->tm_hour += i * 12;
|
H A D | strftime.c | 217 pt = _conv(t->tm_hour, "%02d", pt, ptlim); 220 pt = _conv((t->tm_hour % 12) ? 221 (t->tm_hour % 12) : 12, 230 ** _conv(t->tm_hour % 12 ? 231 ** t->tm_hour % 12 : 12, 2, ' '); 238 pt = _conv(t->tm_hour, "%2d", pt, ptlim); 251 ** _conv(t->tm_hour, 2, ' '); 258 pt = _conv((t->tm_hour % 12) ? 259 (t->tm_hour % 12) : 12, 272 pt = _add((t->tm_hour > [all...] |
H A D | Time.c | 146 tmp->tm_hour = (int) (rem / SECSPERHOUR); 238 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && 269 if (normalize_overflow(&yourtm.tm_hour, &yourtm.tm_min, MINSPERHOUR)) 271 if (normalize_overflow(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY)) 617 timeptr->tm_mday, timeptr->tm_hour, 645 timeptr->tm_mday, timeptr->tm_hour,
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | timetest.c | 79 et->tm_hour, et->tm_min, et->tm_sec); 107 et1->tm_hour == et2->tm_hour && 143 et.tm_hour, et.tm_min, et.tm_sec); 314 et.tm_hour = 0; 336 et.tm_hour = 23; 363 et.tm_hour = 0; 390 et.tm_hour = 18; 407 et.tm_hour = 18; 447 et1.tm_hour [all...] |
H A D | timemac.c | 67 et->tm_hour, et->tm_min, et->tm_sec);
|
H A D | y2k.c | 86 et->tm_hour, et->tm_min, et->tm_sec); 109 et->tm_hour, 126 et1->tm_hour == et2->tm_hour && 469 et1->tm_hour += it->ti_hour;
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | time.h | 24 - int tm_hour; // hours since midnight - [0, 23] 145 int tm_hour; // hours since midnight [0, 23] member in struct:tm 311 %H is replaced by the hour (24-hour clock) as a decimal number (00-23). [tm_hour] 312 %I is replaced by the hour (12-hour clock) as a decimal number (01-12). [tm_hour] 318 associated with a 12-hour clock. [tm_hour] 319 %r is replaced by the locale's 12-hour clock time. [tm_hour, tm_min, tm_sec] 320 %R is equivalent to "%H:%M". [tm_hour, tm_min] 324 [tm_hour, tm_min, tm_sec]
|
/vbox/src/libs/xpcom18a4/xpcom/base/ |
H A D | nsLeakDetector.cpp | 74 now->tm_hour, now->tm_min, now->tm_sec); 89 now->tm_hour, now->tm_min, now->tm_sec);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | prtime.h | 132 PRInt32 tm_min; /* minutes past tm_hour (0-59) */ 133 PRInt32 tm_hour; /* hours past tm_day (0-23) */ member in struct:PRExplodedTime
|
/vbox/src/VBox/Devices/PC/ |
H A D | DevRTC.cpp | 122 int32_t tm_hour; member in struct:my_tm 287 tm->tm_hour = from_bcd(pThis, pThis->cmos_data[RTC_HOURS] & 0x7f); 290 tm->tm_hour %= 12; 292 tm->tm_hour += 12; 599 tm->tm_hour++; 600 if ((unsigned)tm->tm_hour >= 24) 602 tm->tm_hour = 0; 671 pThis->cmos_data[RTC_HOURS] = to_bcd(pThis, tm->tm_hour); 676 int h = tm->tm_hour % 12; 678 if (tm->tm_hour > [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/minizip/ |
H A D | minizip.c | 132 tmzip->tm_hour = filedate->tm_hour; 406 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
|
H A D | miniunz.c | 105 newdate.tm_hour=tmu_date.tm_hour; 295 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
|
H A D | zip.h | 93 uInt tm_hour; /* hours since midnight - [0,23] */ member in struct:tm_zip_s
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/ |
H A D | TimerWrapper.c | 134 GmTime->tm_hour = (int) (DayRemainder / SECSPERHOUR);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/ |
H A D | efi.h | 94 uint8_t tm_hour; /* 0 - 23 */ member in struct:efi_tm
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | time.h | 59 int tm_hour; member in struct:tm
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | mactime.c | 239 statictime.tm_hour = dtr.hour;
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | time.h | 59 int tm_hour; member in struct:tm
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | time_test.c | 73 .tm_hour = HOUR, \
|