Searched defs:tm_year (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dtime.c33 * (tm_year-70)*31536000 + ((tm_year-69)/4)*86400 -
34 * ((tm_year-1)/100)*86400 + ((tm_year+299)/400)*86400
49 * @v tm_year Years since 1900
52 static int is_leap_year ( int tm_year ) {
55 if ( ( tm_year % 4 ) == 0 )
57 if ( ( tm_year % 100 ) == 0 )
59 if ( ( tm_year % 400 ) == 100 )
68 * @v tm_year Year
88 day_of_week( int tm_year, int tm_mon, int tm_mday ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dtime.h25 int tm_year; member in struct:tm
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dtime.h62 int tm_year; member in struct:tm
H A Dwchar.h75 int tm_year; member in struct:tm
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dtime.h62 int tm_year; member in struct:tm
H A Dwchar.h85 int tm_year; member in struct:tm
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprtime.h136 PRInt32 tm_month; /* months past tm_year (0-11, Jan = 0) */
137 PRInt16 tm_year; /* absolute year, AD (note that we do not member in struct:PRExplodedTime
222 * - tm_month and tm_year: because the number of days in a month and
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dzip.h96 uInt tm_year; /* years - [1980..2044] */ member in struct:tm_zip_s
H A Dunzip.h91 uInt tm_year; /* years - [1980..2044] */ member in struct:tm_unz_s
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dtime.h27 - int tm_year; // years since 1900
105 /** Value added to tm_year to get the full year value. TM_YEAR_BASE + 110 --> 2010 **/
142 int tm_year; // years since 1900 member in struct:tm
191 the final value of tm_mday is not set until tm_mon and tm_year
299 as a decimal number (00-99). [tm_year]
301 %D is equivalent to "%m/%d/%y". [tm_mon, tm_mday, tm_year]
305 [tm_year, tm_mon, tm_mday]
307 a decimal number (00-99). [tm_year, tm_wday, tm_yday]
309 (e.g., 1997). [tm_year, tm_wday, tm_yday]
328 first day of week 1) as a decimal number (00-53). [tm_year, tm_wda
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h104 int tm_year; /* years since 1900 */ member in struct:tm
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Defi.h91 uint16_t tm_year; /* 1998 - 20XX */ member in struct:efi_tm
/vbox/src/VBox/Devices/PC/
H A DDevRTC.cpp125 int32_t tm_year; member in struct:my_tm
297 tm->tm_year = from_bcd(pThis, pThis->cmos_data[RTC_YEAR]) + 100;
608 tm->tm_year + 1900);
619 tm->tm_year++;
684 pThis->cmos_data[RTC_YEAR] = to_bcd(pThis, tm->tm_year % 100);
770 SSMR3PutS32(pSSM, pThis->current_tm.tm_year);
833 SSMR3GetS32(pSSM, &pThis->current_tm.tm_year);
1008 Tm.tm_year = Time.i32Year - 1900;
1019 int iYear = to_bcd(pThis, (Tm.tm_year / 100) + 19); /* tm_year i
[all...]

Completed in 57 milliseconds