Searched refs:Month (Results 1 - 25 of 36) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PcatRealTimeClockRuntimeDxe/
H A DPcRtc.c161 Time.Month = RtcRead (RTC_ADDRESS_MONTH);
211 Time.Month = RTC_INIT_MONTH;
289 Time->Month = RtcRead (RTC_ADDRESS_MONTH);
401 RtcWrite (RTC_ADDRESS_MONTH, RtcTime.Month);
507 Time->Month = RtcRead (RTC_ADDRESS_MONTH);
529 Time->Month = RtcTime.Month;
658 RtcTime.Month = RtcRead (RTC_ADDRESS_MONTH);
754 Time->Month = CheckAndConvertBcd8ToDecimal8 (Time->Month);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_efi_lib.c122 for (EfiTime->Month = 0; days >= (long) ip[EfiTime->Month]; ++(EfiTime->Month))
123 days = days - (long) ip[EfiTime->Month];
124 EfiTime->Month++; // adjust range to EFI conventions
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DTimeEfi.c35 BT->tm_mon = ET->Month - 1; // BD time is zero based, EFI is 1 based
74 ET->Month = (UINT8)BT->tm_mon + 1;
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DRealTimeClock.c145 UINT8 Month; local
166 Month = RtcRead (RTC_ADDRESS_MONTH);
181 Month = BcdToDecimal8 (Month);
212 // Add in number of seconds for current Month, Day, Hour, Minute, Seconds, and TimeZone adjustment
214 ASSERT (Month <= 12);
216 (time_t)(CumulativeDays[IsLeap(Year)][Month] * SECSPERDAY) +
H A DTimerWrapper.c92 // Add in number of seconds for current Month, Day, Hour, Minute, Seconds, and TimeZone adjustment
96 (time_t)(CumulativeDays[IsLeap(Time.Year)][Time.Month] * SECSPERDAY) +
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBmLib.c403 } else if (FirstTime->Month != SecondTime->Month) {
404 return (BOOLEAN) (FirstTime->Month < SecondTime->Month);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DEventLogInfo.h26 UINT8 Month; member in struct:__anon12832
H A DEventLogInfo.c394 Log->Month,
H A DPrintInfo.c2240 Bits 8:5 Month, in the range 1 to 12.
2255 UINTN Month; local
2264 Month = (Date & 0x00E0) >> 5;
2266 ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_MONTH_DAY_YEAR), gShellDebug1HiiHandle, Day, Month, Year);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePrintLib/
H A DPrintLibInternal.h43 UINT8 Month; member in struct:__anon12453
H A DPrintLibInternal.c701 TmpTime->Month,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/Common/
H A DUefiBaseTypes.h52 // Month: 1 - 12
62 UINT8 Month; member in struct:__anon10052
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DInputHandler.c280 Month change: 2013.03.29 -> 2013.02.29 -> 2013.02.28
291 UINT8 Month; local
300 Month = Question->HiiValue.Value.date.Month;
304 switch (Month) {
422 EditValue = QuestionValue->Value.date.Month;
426 switch (QuestionValue->Value.date.Month) {
665 // Month/Day
745 QuestionValue->Value.date.Month = (UINT8) EditValue;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DLs.c265 Node->Info->CreateTime.Month,
271 Node->Info->LastAccessTime.Month,
277 Node->Info->ModificationTime.Month,
H A DTimeDate.c117 TheTime.Month = 0xFF;
126 TheTime.Month = (UINT8)ShellStrToUintn (Walker);
230 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_DATE_SFO_FORMAT), gShellLevel2HiiHandle, TheTime.Month, TheTime.Day, TheTime.Year);
232 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_DATE_FORMAT), gShellLevel2HiiHandle, TheTime.Month, TheTime.Day, TheTime.Year);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Uefi/
H A DUefiBaseType.h62 /// Month: 1 - 12
72 UINT8 Month; member in struct:__anon12393
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Uefi/
H A DUefiBaseType.h64 /// Month: 1 - 12
74 UINT8 Month; member in struct:__anon15669
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Library/
H A DHiiLib.h431 Returns a UINT64 value that contains bit fields for Year, Month, and Day.
432 The lower 16-bits of Year are placed in bits 0..15. The lower 8-bits of Month
438 @param Month The month value to be encoded.
441 @return A 64-bit containing Year, Month, and Day.
443 #define EFI_HII_DATE_UINT64(Year, Month, Day) \
444 (UINT64)((Year & 0xffff) | ((Month & 0xff) << 16) | ((Day & 0xff) << 24))
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Framework/
H A DFrameworkInternalFormRepresentation.h239 FRAMEWORK_EFI_IFR_NUMERIC Month; member in struct:__anon10545
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Dhcp6Dxe/
H A DDhcp6Utility.c125 (((((Time.Year - 2000) * 360 + (Time.Month - 1)) * 30 + (Time.Day - 1)) * 24 + Time.Hour) * 60 + Time.Minute) *
822 (Time.Month - 1)) * 30 +
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DAuthService.c1329 } else if (FirstTime->Month != SecondTime->Month) {
1330 return (BOOLEAN) (FirstTime->Month < SecondTime->Month);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DSal.h543 UINT8 Month; member in struct:__anon11767
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
H A DPrintLib.c952 UINT8 Month; member in struct:__anon11084
1531 TmpTime->Month,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c383 ASSERT ((Time.Month <= 12) && (Time.Month >= 1));
394 mMonthName [Time.Month-1],
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrSyntax.g146 #token Month("month") "month"
1981 Month VarId "=" D2:StringIdentifier "." D2M:StringIdentifier ","
2023 D.Month = _STOU8(N->getText());
2024 if (D.Month < 1 || D.Month > 12) {
2025 _PCATCH (VFR_RETURN_INVALID_PARAMETER, N->getLine(), "Month default value must be between 1 and 12.");
4282 IN CHAR8 *Month,
4289 Date.Month = _STOU8 (Month);

Completed in 154 milliseconds

12