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

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h21 int tm_mday; member in struct:tm
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h60 int tm_mday; member in struct:tm
H A Dwchar.h73 int tm_mday; member in struct:tm
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h60 int tm_mday; member in struct:tm
H A Dwchar.h83 int tm_mday; member in struct:tm
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprtime.h134 PRInt32 tm_mday; /* days past tm_mon (1-31, note that it member in struct:PRExplodedTime
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dzip.h94 uInt tm_mday; /* day of the month - [1,31] */ member in struct:tm_zip_s
H A Dunzip.h89 uInt tm_mday; /* day of the month - [1,31] */ member in struct:tm_unz_s
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dtime.h25 - int tm_mday; // day of the month - [1, 31]
144 int tm_mday; // day of the month [1, 31] member in struct:tm
191 the final value of tm_mday is not set until tm_mon and tm_year
300 %d is replaced by the day of the month as a decimal number (01-31). [tm_mday]
301 %D is equivalent to "%m/%d/%y". [tm_mon, tm_mday, tm_year]
303 a single digit is preceded by a space. [tm_mday]
305 [tm_year, tm_mon, tm_mday]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h102 int tm_mday; /* day of the month [1-31] */ member in struct:tm
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Defi.h93 uint8_t tm_mday; /* 1 - 31 */ member in struct:efi_tm
/vbox/src/VBox/Devices/PC/
H A DDevRTC.cpp123 int32_t tm_mday; member in struct:my_tm
295 tm->tm_mday = from_bcd(pThis, pThis->cmos_data[RTC_DAY_OF_MONTH]);
609 tm->tm_mday++;
610 if (tm->tm_mday < 1)
611 tm->tm_mday = 1;
612 else if (tm->tm_mday > days_in_month)
614 tm->tm_mday = 1;
682 pThis->cmos_data[RTC_DAY_OF_MONTH] = to_bcd(pThis, tm->tm_mday);
768 SSMR3PutS32(pSSM, pThis->current_tm.tm_mday);
831 SSMR3GetS32(pSSM, &pThis->current_tm.tm_mday);
[all...]

Completed in 46 milliseconds