Home
last modified time | relevance | path

Searched refs:HobEnd (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Hob/
DHob.c81 EFI_HOB_GENERIC_HEADER *HobEnd; in PeiCreateHob() local
115 HobEnd = (EFI_HOB_GENERIC_HEADER*) ((UINTN) *Hob + Length); in PeiCreateHob()
116 HandOffHob->EfiEndOfHobList = (EFI_PHYSICAL_ADDRESS) (UINTN) HobEnd; in PeiCreateHob()
118 HobEnd->HobType = EFI_HOB_TYPE_END_OF_HOB_LIST; in PeiCreateHob()
119 HobEnd->HobLength = (UINT16) sizeof (EFI_HOB_GENERIC_HEADER); in PeiCreateHob()
120 HobEnd->Reserved = 0; in PeiCreateHob()
121 HobEnd++; in PeiCreateHob()
122 HandOffHob->EfiFreeMemoryBottom = (EFI_PHYSICAL_ADDRESS) (UINTN) HobEnd; in PeiCreateHob()
146 EFI_HOB_GENERIC_HEADER *HobEnd; in PeiCoreBuildHobHandoffInfoTable() local
149 HobEnd = (EFI_HOB_GENERIC_HEADER*) (Hob+1); in PeiCoreBuildHobHandoffInfoTable()
[all …]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiHobLib/
DHob.c82 EFI_HOB_GENERIC_HEADER *HobEnd; in HobConstructor() local
85 HobEnd = (EFI_HOB_GENERIC_HEADER *)(Hob+1); in HobConstructor()
91 HobEnd->HobType = EFI_HOB_TYPE_END_OF_HOB_LIST; in HobConstructor()
92 HobEnd->HobLength = sizeof(EFI_HOB_GENERIC_HEADER); in HobConstructor()
93 HobEnd->Reserved = 0; in HobConstructor()
101 Hob->EfiFreeMemoryBottom = (EFI_PHYSICAL_ADDRESS)(UINTN)(HobEnd+1); in HobConstructor()
102 Hob->EfiEndOfHobList = (EFI_PHYSICAL_ADDRESS)(UINTN)HobEnd; in HobConstructor()
114 EFI_HOB_GENERIC_HEADER *HobEnd; in CreateHob() local
133 HobEnd = (EFI_HOB_GENERIC_HEADER*) ((UINTN)Hob + HobLength); in CreateHob()
134 HandOffHob->EfiEndOfHobList = (EFI_PHYSICAL_ADDRESS) (UINTN) HobEnd; in CreateHob()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/Hob/
DPeiHobLib.c99 EFI_PEI_HOB_POINTERS HobEnd; in BuildHobHandoffInfoTable() local
115 HobEnd.Raw = (VOID*)(Hob.HandoffInformationTable + 1); in BuildHobHandoffInfoTable()
116 Hob.HandoffInformationTable->EfiEndOfHobList = (EFI_PHYSICAL_ADDRESS) (UINTN) HobEnd.Raw; in BuildHobHandoffInfoTable()
117 Hob = BuildHobEndOfHobList (HobEnd.Raw); in BuildHobHandoffInfoTable()