Searched defs:tm_hour (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h19 int tm_hour; member in struct:tm
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h59 int tm_hour; member in struct:tm
H A Dwchar.h72 int tm_hour; member in struct:tm
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h59 int tm_hour; member in struct:tm
H A Dwchar.h82 int tm_hour; member in struct:tm
/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/libs/zlib-1.2.6/contrib/minizip/
H A Dzip.h93 uInt tm_hour; /* hours since midnight - [0,23] */ member in struct:tm_zip_s
H A Dunzip.h88 uInt tm_hour; /* hours since midnight - [0,23] */ member in struct:tm_unz_s
/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/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h101 int tm_hour; /* hours since midnight [0-23] */ member in struct:tm
/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/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...]

Completed in 67 milliseconds