Home
last modified time | relevance | path

Searched refs:EndAddress (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/ArmPkg/Library/ArmCacheMaintenanceLib/
DArmCacheMaintenanceLib.c33 UINTN EndAddress = (UINTN)Start + Length; in CacheRangeOperation() local
36 while (AlignedAddress < EndAddress) { in CacheRangeOperation()
/device/linaro/bootloader/edk2/OvmfPkg/Csm/CsmSupportLib/
DLegacyRegion.c114 UINT32 EndAddress; in LegacyRegionManipulationInternal() local
124 EndAddress = Start + Length - 1; in LegacyRegionManipulationInternal()
125 if ((Start < PAM_BASE_ADDRESS) || EndAddress > PAM_LIMIT_ADDRESS) { in LegacyRegionManipulationInternal()
175 …if ((EndAddress >= mSectionArray[Index].Start) && (EndAddress < (mSectionArray[Index].Start + mSec… in LegacyRegionManipulationInternal()
/device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
DHwDebug.c101 UINTN EndAddress; in EblMfillCmd() local
116 for (EndAddress = Address + (Length * Width); Address < EndAddress; Address += Width) { in EblMfillCmd()
DCommand.c609 UINT8 *EndAddress; in OutputData() local
618 for (EndAddress = Address + Length; Address < EndAddress; Offset += Line) { in OutputData()
620 for (Line = 0; (Line < 0x10) && (Address < EndAddress);) { in OutputData()
621 Bytes = EndAddress - Address; in OutputData()
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Gcd/
DGcd.c433 BottomEntry->EndAddress = BaseAddress - 1; in CoreInsertGcdMapEntry()
437 if ((BaseAddress + Length - 1) < Entry->EndAddress) { in CoreInsertGcdMapEntry()
442 Entry->EndAddress = BaseAddress + Length - 1; in CoreInsertGcdMapEntry()
512 Entry->EndAddress = AdjacentEntry->EndAddress; in CoreMergeGcdMapEntry()
599 if (BaseAddress >= Entry->BaseAddress && BaseAddress <= Entry->EndAddress) { in CoreSearchGcdMapEntry()
604 (BaseAddress + Length - 1) <= Entry->EndAddress ) { in CoreSearchGcdMapEntry()
1140 MaxAddress = Entry->EndAddress; in CoreAllocateSpace()
1172 if (Length > (Entry->EndAddress + 1)) { in CoreAllocateSpace()
1176 if (Entry->EndAddress > MaxAddress) { in CoreAllocateSpace()
1179 *BaseAddress = Entry->EndAddress; in CoreAllocateSpace()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
DPage.c413 Entry->EndAddress < MAX_ADDRESS && in PromoteMemoryResource()
435 Entry->EndAddress, in PromoteMemoryResource()
1721 MergeGcdMapEntry.EndAddress = GcdMapEntry->EndAddress; in CoreGetMemoryMap()
1734 … ASSERT (((MergeGcdMapEntry.EndAddress - MergeGcdMapEntry.BaseAddress + 1) & EFI_PAGE_MASK) == 0); in CoreGetMemoryMap()
1741 …MemoryMap->NumberOfPages = RShiftU64 ((MergeGcdMapEntry.EndAddress - MergeGcdMapEntry.BaseAddress … in CoreGetMemoryMap()
1769 … ASSERT (((MergeGcdMapEntry.EndAddress - MergeGcdMapEntry.BaseAddress + 1) & EFI_PAGE_MASK) == 0); in CoreGetMemoryMap()
1776 …MemoryMap->NumberOfPages = RShiftU64 ((MergeGcdMapEntry.EndAddress - MergeGcdMapEntry.BaseAddress … in CoreGetMemoryMap()
/device/linaro/bootloader/edk2/UefiCpuPkg/Library/MtrrLib/
DMtrrLib.c737 UINT64 EndAddress; in CombineMemoryAttribute() local
742 EndAddress = *Base +*Length - 1; in CombineMemoryAttribute()
751 (EndAddress < VariableMtrr[Index].BaseAddress) in CombineMemoryAttribute()
765 if (VariableMtrr[Index].BaseAddress <= *Base && MtrrEnd >= EndAddress) { in CombineMemoryAttribute()
776 CombineEnd = EndAddress > MtrrEnd ? EndAddress : MtrrEnd; in CombineMemoryAttribute()
784 EndAddress = CombineEnd; in CombineMemoryAttribute()
791 if (VariableMtrr[Index].BaseAddress == *Base && MtrrEnd == EndAddress) { in CombineMemoryAttribute()
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/MtrrLib/
DMtrrLib.c713 UINT64 EndAddress; in CombineMemoryAttribute() local
718 EndAddress = *Base +*Length - 1; in CombineMemoryAttribute()
727 (EndAddress < VariableMtrr[Index].BaseAddress) in CombineMemoryAttribute()
741 if (VariableMtrr[Index].BaseAddress <= *Base && MtrrEnd >= EndAddress) { in CombineMemoryAttribute()
752 CombineEnd = EndAddress > MtrrEnd ? EndAddress : MtrrEnd; in CombineMemoryAttribute()
760 EndAddress = CombineEnd; in CombineMemoryAttribute()
767 if (VariableMtrr[Index].BaseAddress == *Base && MtrrEnd == EndAddress) { in CombineMemoryAttribute()
/device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
DPage.c660 UINTN EndAddress; in InternalAllocAddress() local
668 EndAddress = Address + EFI_PAGES_TO_SIZE (NumberOfPages); in InternalAllocAddress()
672 if ((UINTN)Pages + EFI_PAGES_TO_SIZE (Pages->NumberOfPages) < EndAddress) { in InternalAllocAddress()
675 return InternalAllocPagesOnOneNode (Pages, NumberOfPages, EndAddress); in InternalAllocAddress()
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/
DDxeMain.h211 UINT64 EndAddress; member