Searched defs:tm_mon (Results 1 - 12 of 12) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | time.c | 85 * @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 D | time.h | 23 int tm_mon; member in struct:tm
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | time.h | 61 int tm_mon; member in struct:tm
|
H A D | wchar.h | 74 int tm_mon; member in struct:tm
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | time.h | 61 int tm_mon; member in struct:tm
|
H A D | wchar.h | 84 int tm_mon; member in struct:tm
|
/vbox/src/libs/zlib-1.2.6/contrib/minizip/ |
H A D | zip.h | 95 uInt tm_mon; /* months since January - [0,11] */ member in struct:tm_zip_s
|
H A D | unzip.h | 90 uInt tm_mon; /* months since January - [0,11] */ member in struct:tm_unz_s
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | time.h | 26 - 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 D | OpenSslSupport.h | 103 int tm_mon; /* months since January [0-11] */ member in struct:tm
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/ |
H A D | efi.h | 92 uint8_t tm_mon; /* 1 - 12 */ member in struct:efi_tm
|
/vbox/src/VBox/Devices/PC/ |
H A D | DevRTC.cpp | 124 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 54 milliseconds