Home | History | Annotate | Download | only in Dispatcher

Lines Matching defs:BlockMap

732   EFI_FV_BLOCK_MAP_ENTRY                *BlockMap;

756 BlockMap = FwVolHeader->BlockMap;
760 // Find LbaIndex and LbaOffset for FV extension header based on BlockMap.
762 while ((BlockMap->NumBlocks != 0) || (BlockMap->Length != 0)) {
763 for (Index = 0; Index < BlockMap->NumBlocks && ExtHeaderOffset >= BlockMap->Length; Index ++) {
764 ExtHeaderOffset -= BlockMap->Length;
770 if (Index < BlockMap->NumBlocks) {
774 BlockMap++;