Home | History | Annotate | Download | only in SmmCommunicationBufferDxe

Lines Matching refs:DescriptorSize

51   UINT32                                   DescriptorSize;

55 DescriptorSize = sizeof(EFI_MEMORY_DESCRIPTOR);
59 // now you have to use *DescriptorSize to make things work.
61 DescriptorSize += sizeof(UINT64) - (DescriptorSize % sizeof (UINT64));
66 PiSmmCommunicationRegionTable = AllocateReservedPool (sizeof(EDKII_PI_SMM_COMMUNICATION_REGION_TABLE) + DescriptorSize);
68 ZeroMem (PiSmmCommunicationRegionTable, sizeof(EDKII_PI_SMM_COMMUNICATION_REGION_TABLE) + DescriptorSize);
72 PiSmmCommunicationRegionTable->DescriptorSize = DescriptorSize;
84 DEBUG ((EFI_D_INFO, " DescriptorSize - 0x%x\n", PiSmmCommunicationRegionTable->DescriptorSize));