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

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dtime.c85 * @v tm_mon Month of year [0,11]
88 static int day_of_week ( int tm_year, int tm_mon, int tm_mday ) { argument
93 if ( tm_mon < 2 )
96 offset[tm_mon] + tm_mday ) % 7 );
116 days_to_month_start[ tm->tm_mon ] );
117 if ( ( tm->tm_mon >= 2 ) && is_leap_year ( tm->tm_year ) )
121 tm->tm_wday = day_of_week ( tm->tm_year, tm->tm_mon, tm->tm_mday );
132 "day %d)\n", ( tm->tm_year + 1900 ), ( tm->tm_mon + 1 ),
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h23 int tm_mon; member in struct:tm
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h61 int tm_mon; member in struct:tm
H A Dwchar.h74 int tm_mon; member in struct:tm
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h61 int tm_mon; member in struct:tm
H A Dwchar.h84 int tm_mon; member in struct:tm
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dzip.h95 uInt tm_mon; /* months since January - [0,11] */ member in struct:tm_zip_s
H A Dunzip.h90 uInt tm_mon; /* months since January - [0,11] */ member in struct:tm_unz_s
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dtime.h26 - int tm_mon; // months since January - [0, 11]
121 Values for the tm_mon member of struct tm.
143 int tm_mon; // months since January [0, 11] member in struct:tm
191 the final value of tm_mday is not set until tm_mon and tm_year
295 %b is replaced by the locale's abbreviated month name. [tm_mon]
296 %B is replaced by the locale's full month name. [tm_mon]
301 %D is equivalent to "%m/%d/%y". [tm_mon, tm_mday, tm_year]
305 [tm_year, tm_mon, tm_mday]
310 %h is equivalent to "%b". [tm_mon]
314 %m is replaced by the month as a decimal number (01-12). [tm_mon]
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h103 int tm_mon; /* months since January [0-11] */ member in struct:tm
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Defi.h92 uint8_t tm_mon; /* 1 - 12 */ member in struct:efi_tm
/vbox/src/VBox/Devices/PC/
H A DDevRTC.cpp124 int32_t tm_mon; member in struct:my_tm
296 tm->tm_mon = from_bcd(pThis, pThis->cmos_data[RTC_MONTH]) - 1;
607 days_in_month = get_days_in_month(tm->tm_mon,
615 tm->tm_mon++;
616 if (tm->tm_mon >= 12)
618 tm->tm_mon = 0;
683 pThis->cmos_data[RTC_MONTH] = to_bcd(pThis, tm->tm_mon + 1);
769 SSMR3PutS32(pSSM, pThis->current_tm.tm_mon);
832 SSMR3GetS32(pSSM, &pThis->current_tm.tm_mon);
1009 Tm.tm_mon
[all...]

Completed in 60 milliseconds