Home
last modified time | relevance | path

Searched refs:EpochSeconds (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/PL031RealTimeClockLib/
DPL031RealTimeClockLib.c118 IN UINTN EpochSeconds, in EpochToEfiTime() argument
139 J = (EpochSeconds / 86400) + 2440588; in EpochToEfiTime()
157 ss = EpochSeconds % 60; in EpochToEfiTime()
158 a = (EpochSeconds - ss) / 60; in EpochToEfiTime()
183 UINTN EpochSeconds; in EfiTimeToEpoch() local
194EpochSeconds = (EpochDays * SEC_PER_DAY) + ((UINTN)Time->Hour * SEC_PER_HOUR) + (Time->Minute * SE… in EfiTimeToEpoch()
196 return EpochSeconds; in EfiTimeToEpoch()
258 UINT32 EpochSeconds; in LibGetTime() local
274 Status = ArmPlatformSysConfigGet (SYS_CFG_RTC, &EpochSeconds); in LibGetTime()
277 EpochSeconds = MmioRead32 (mPL031RtcBase + PL031_RTC_DR_DATA_REGISTER); in LibGetTime()
[all …]
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/XenRealTimeClockLib/
DXenRealTimeClockLib.c27 IN UINTN EpochSeconds, in EpochToEfiTime() argument
48 J = (EpochSeconds / 86400) + 2440588; in EpochToEfiTime()
66 ss = EpochSeconds % 60; in EpochToEfiTime()
67 a = (EpochSeconds - ss) / 60; in EpochToEfiTime()