Searched defs:tm_wday (Results 1 - 9 of 9) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | time.h | 27 int tm_wday; member in struct:tm
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | time.h | 63 int tm_wday; member in struct:tm
|
H A D | wchar.h | 76 int tm_wday; member in struct:tm
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | time.h | 63 int tm_wday; member in struct:tm
|
H A D | wchar.h | 86 int tm_wday; member in struct:tm
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/ |
H A D | prtime.h | 140 PRInt8 tm_wday; /* calculated day of the week member in struct:PRExplodedTime 226 * - tm_wday and tm_yday: these fields are calculated by NSPR. Users
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | time.h | 28 - int tm_wday; // days since Sunday - [0, 6] 109 Values for the tm_wday member of struct tm. 148 int tm_wday; // days since Sunday [0, 6] member in struct:tm 185 original values of the tm_wday and tm_yday components of the structure are 188 the values of the tm_wday and tm_yday components of the structure are set 293 %a is replaced by the locale's abbreviated weekday name. [tm_wday] 294 %A is replaced by the locale's full weekday name. [tm_wday] 307 a decimal number (00-99). [tm_year, tm_wday, tm_yday] 309 (e.g., 1997). [tm_year, tm_wday, tm_yday] 326 where Monday is 1. [tm_wday] [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/ |
H A D | OpenSslSupport.h | 105 int tm_wday; /* days since Sunday [0-6] */ member in struct:tm
|
/vbox/src/VBox/Devices/PC/ |
H A D | DevRTC.cpp | 126 int32_t tm_wday; member in struct:my_tm 294 tm->tm_wday = from_bcd(pThis, pThis->cmos_data[RTC_DAY_OF_WEEK]); 604 tm->tm_wday++; 605 if ((unsigned)tm->tm_wday >= 7) 606 tm->tm_wday = 0; 681 pThis->cmos_data[RTC_DAY_OF_WEEK] = to_bcd(pThis, tm->tm_wday); 767 SSMR3PutS32(pSSM, pThis->current_tm.tm_wday); 830 SSMR3GetS32(pSSM, &pThis->current_tm.tm_wday); 1011 Tm.tm_wday = (Time.u8WeekDay + 1 + 7) % 7; /* 0 = Monday -> Sunday */
|
Completed in 63 milliseconds