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

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBmLib.c388 @param FirstTime - A pointer to the first EFI_TIME data.
391 @retval TRUE The FirstTime is not later than the SecondTime.
392 @retval FALSE The FirstTime is later than the SecondTime.
397 IN EFI_TIME *FirstTime,
401 if (FirstTime->Year != SecondTime->Year) {
402 return (BOOLEAN) (FirstTime->Year < SecondTime->Year);
403 } else if (FirstTime->Month != SecondTime->Month) {
404 return (BOOLEAN) (FirstTime->Month < SecondTime->Month);
405 } else if (FirstTime->Day != SecondTime->Day) {
406 return (BOOLEAN) (FirstTime
396 TimeCompare( IN EFI_TIME *FirstTime, IN EFI_TIME *SecondTime ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DAuthService.c1314 @param FirstTime A pointer to the first EFI_TIME data.
1317 @retval TRUE The FirstTime is not later than the SecondTime.
1318 @retval FALSE The FirstTime is later than the SecondTime.
1323 IN EFI_TIME *FirstTime,
1327 if (FirstTime->Year != SecondTime->Year) {
1328 return (BOOLEAN) (FirstTime->Year < SecondTime->Year);
1329 } else if (FirstTime->Month != SecondTime->Month) {
1330 return (BOOLEAN) (FirstTime->Month < SecondTime->Month);
1331 } else if (FirstTime->Day != SecondTime->Day) {
1332 return (BOOLEAN) (FirstTime
1322 CompareTimeStamp( IN EFI_TIME *FirstTime, IN EFI_TIME *SecondTime ) argument
[all...]

Completed in 46 milliseconds