Searched refs:tm_hour (Results 1 - 25 of 44) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h19 int tm_hour; member in struct:tm
/vbox/src/VBox/Runtime/r3/posix/
H A Dtimelocal-posix.cpp78 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 Drtc_time.c98 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 Dtime.c32 * 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 Dprtime.c154 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 DTimeEfi.c37 BT->tm_hour = ET->Hour;
76 ET->Hour = (UINT8)BT->tm_hour;
H A Dstrptime.c216 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 Dstrftime.c217 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 DTime.c146 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 Dtimetest.c79 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 Dtimemac.c67 et->tm_hour, et->tm_min, et->tm_sec);
H A Dy2k.c86 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 Dtime.h24 - 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 DnsLeakDetector.cpp74 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 Dprtime.h132 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 DDevRTC.cpp122 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 Dminizip.c132 tmzip->tm_hour = filedate->tm_hour;
406 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
H A Dminiunz.c105 newdate.tm_hour=tmu_date.tm_hour;
295 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
H A Dzip.h93 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 DTimerWrapper.c134 GmTime->tm_hour = (int) (DayRemainder / SECSPERHOUR);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Defi.h94 uint8_t tm_hour; /* 0 - 23 */ member in struct:efi_tm
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h59 int tm_hour; member in struct:tm
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmactime.c239 statictime.tm_hour = dtr.hour;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h59 int tm_hour; member in struct:tm
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dtime_test.c73 .tm_hour = HOUR, \

Completed in 225 milliseconds

12