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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Dispatcher/
H A DDispatcher.c263 EFI_HOB_RESOURCE_DESCRIPTOR *NextResourceHob; local
274 NextResourceHob = NULL;
322 NextResourceHob = NextHob.ResourceDescriptor;
324 // test if range described in this NextResourceHob is system memory and have the same attribute.
327 if (NextResourceHob->ResourceType == EFI_RESOURCE_SYSTEM_MEMORY &&
328 (((NextResourceHob->ResourceAttribute^ResourceHob->ResourceAttribute)&(~EFI_RESOURCE_ATTRIBUTE_TESTED)) == 0)){
331 // See if the memory range described in ResourceHob and NextResourceHob is adjacent
333 if ((ResourceHob->PhysicalStart <= NextResourceHob->PhysicalStart &&
334 ResourceHob->PhysicalStart + ResourceHob->ResourceLength >= NextResourceHob->PhysicalStart)||
335 (ResourceHob->PhysicalStart >= NextResourceHob
[all...]

Completed in 33 milliseconds