Searched defs:CumulativeDays (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DTimerWrapper.c34 UINTN CumulativeDays[2][14] = { variable
88 *timer = *timer + (time_t)(CumulativeDays[IsLeap(Year)][13] * SECSPERDAY);
96 (time_t)(CumulativeDays[IsLeap(Time.Year)][Time.Month] * SECSPERDAY) +
151 if (DayNo > CumulativeDays[IsLeap(Year)][MonthNo]) {
152 DayNo = (UINT16) (DayNo - (UINT16) (CumulativeDays[IsLeap(Year)][MonthNo]));
H A DRealTimeClock.c86 UINTN CumulativeDays[2][14] = { variable
208 *timer = *timer + (time_t)(CumulativeDays[IsLeap(YearIndex)][13] * SECSPERDAY);
216 (time_t)(CumulativeDays[IsLeap(Year)][Month] * SECSPERDAY) +
271 if (DayNo > CumulativeDays[IsLeap(Year)][MonthNo]) {
272 DayNo = (UINT16) (DayNo - (UINT16) (CumulativeDays[IsLeap(Year)][MonthNo]));

Completed in 32 milliseconds