Home | History | Annotate | Download | only in Sec

Lines Matching defs:CurrentAddress

155   EFI_PHYSICAL_ADDRESS        CurrentAddress;

170 CurrentAddress = (EndOfSection + 3) & ~(3ULL);
171 if (CurrentAddress >= EndOfSections) {
175 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
182 EndOfSection = CurrentAddress + Size;
257 EFI_PHYSICAL_ADDRESS CurrentAddress;
268 CurrentAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) Fv;
269 EndOfFirmwareVolume = CurrentAddress + Fv->FvLength;
274 for (EndOfFile = CurrentAddress + Fv->HeaderLength; ; ) {
276 CurrentAddress = (EndOfFile + 7) & ~(7ULL);
277 if (CurrentAddress > EndOfFirmwareVolume) {
281 File = (EFI_FFS_FILE_HEADER*)(UINTN) CurrentAddress;
287 EndOfFile = CurrentAddress + Size;
579 EFI_PHYSICAL_ADDRESS CurrentAddress;
589 CurrentAddress = (EFI_PHYSICAL_ADDRESS)(UINTN) BootFirmwareVolumePtr;
590 EndOfFirmwareVolume = CurrentAddress + BootFirmwareVolumePtr->FvLength;
595 for (EndOfFile = CurrentAddress + BootFirmwareVolumePtr->HeaderLength; ; ) {
597 CurrentAddress = (EndOfFile + 7) & 0xfffffffffffffff8ULL;
598 if (CurrentAddress > EndOfFirmwareVolume) {
602 File = (EFI_FFS_FILE_HEADER*)(UINTN) CurrentAddress;
608 EndOfFile = CurrentAddress + Size;
625 CurrentAddress = (EndOfSection + 3) & 0xfffffffffffffffcULL;
626 Section = (EFI_COMMON_SECTION_HEADER*)(UINTN) CurrentAddress;
633 EndOfSection = CurrentAddress + Size;