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

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Guid/
H A DDebugImageInfoTable.h71 UINT32 TableSize; member in struct:__anon11344
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Misc/
H A DDebugImageInfo.c21 0, // UINT32 TableSize;
177 UINTN TableSize; local
186 if (mDebugInfoTableHeader.TableSize < mMaxTableEntries) {
202 TableSize = mMaxTableEntries * EFI_DEBUG_TABLE_ENTRY_SIZE;
203 NewTable = AllocateZeroPool (TableSize + EFI_PAGE_SIZE);
211 CopyMem (NewTable, Table, TableSize);
243 mDebugInfoTableHeader.TableSize++;
280 mDebugInfoTableHeader.TableSize--;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiPlatformDxe/
H A DAcpiPlatform.c181 UINTN TableSize; local
223 TableSize = ((EFI_ACPI_DESCRIPTION_HEADER *) CurrentTable)->Length;
224 ASSERT (Size >= TableSize);
229 AcpiPlatformChecksum ((UINT8*)CurrentTable, TableSize);
237 TableSize,
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Tcg/TcgSmm/
H A DTcgSmm.c287 UINTN TableSize; local
294 &TableSize
312 TableSize,
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
H A DMisc.c820 @param TableSize The size of paramter/return value table
829 IN UINTN TableSize,
842 DEBUG ((DEBUG_NET, "MakePxeCall(CallIndex = %02x, Table = %X, TableSize = %d)\n", CallIndex, Table, TableSize));
859 TableSize / EFI_PAGE_SIZE + 1,
869 CopyMem (MemPageAddress, Table, TableSize);
906 for (Index = 0; Index < TableSize; Index++) {
929 for (Index = 0; Index < TableSize; Index++) {
938 CopyMem (Table, MemPageAddress, TableSize);
953 gBS->FreePages ((EFI_PHYSICAL_ADDRESS) (UINTN) MemPageAddress, TableSize / EFI_PAGE_SIZ
826 MakePxeCall( EFI_SIMPLE_NETWORK_DEV *SimpleNetworkDevice, IN OUT VOID *Table, IN UINTN TableSize, IN UINT16 CallIndex ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/
H A DLegacyBiosPlatform.h55 /// TableSize Size in bytes of the MP table.
93 /// TableSize Size of data.
135 /// TableSize Size of data.
187 /// TableSize Size of data.
213 /// TableSize Size of BinaryImage in bytes.
243 /// TableSize Size of Table in bytes.
268 /// TableSize Size of Table in bytes.
470 UINT16 TableSize; member in struct:__anon10767
549 @param TableSize Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum.
566 OUT UINTN *TableSize,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/AcpiPlatformDxe/
H A DAcpiPlatform.c345 UINTN TableSize; local
404 TableSize = ((EFI_ACPI_DESCRIPTION_HEADER *) CurrentTable)->Length;
406 DEBUG((DEBUG_INFO, "Size:%d, TableSize:%d\n", Size, TableSize));
408 ASSERT (Size >= TableSize);
413 AcpiPlatformChecksum ((UINT8*)CurrentTable, TableSize);
421 TableSize,
/vbox/src/VBox/Additions/haiku/SharedFolders/
H A DOpenHashTable.h147 size_t TableSize() const function in class:BOpenHashTable
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Drpcproxy.h62 unsigned short TableSize; member in struct:tagProxyFileInfo
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Drpcproxy.h62 unsigned short TableSize; member in struct:tagProxyFileInfo
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Csm/CsmSupportLib/
H A DLegacyPlatform.c68 0x0000, // UINT16 TableSize
721 PirqTableHead.PirqTable.TableSize = PTableSize;
762 @param TableSize Mode specific. See EFI_GET_PLATFORM_INFO_MODE enum.
779 OUT UINTN *TableSize,
800 (UINTN *) TableSize
775 GetPlatformInfo( IN EFI_LEGACY_BIOS_PLATFORM_PROTOCOL *This, IN EFI_GET_PLATFORM_INFO_MODE Mode, OUT VOID **Table, OUT UINTN *TableSize, OUT UINTN *Location, OUT UINTN *Alignment, IN UINT16 LegacySegment, IN UINT16 LegacyOffset ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
H A DLegacyBootSupport.c639 UINTN TableSize; local
667 &TableSize,
674 DEBUG ((EFI_D_INFO, " Table - %x, Size - %x, Location - %x, Alignment - %x\n", (UINTN)Table, (UINTN)TableSize, (UINTN)Location, (UINTN)Alignment));
690 Regs.X.CX = (UINT16) TableSize;
716 &TableSize,
726 Legacy16Table->MpTableLength = (UINT32)TableSize;
774 TableSize
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsBoot.c266 UINT16 TableSize; local
311 TableSize = 0;
313 Status = UsbIo->UsbGetSupportedLanguages (UsbIo, &LangIdTable, &TableSize);
314 if (EFI_ERROR (Status) || (TableSize == 0) || (LangIdTable == NULL)) {
330 for (Index = 0; Index < TableSize / sizeof (UINT16); Index++) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrUtilityLib.cpp1528 UINT32 TableSize; local
1531 TableSize = mNewVarStorageNode->mStorageInfo.mNameSpace.mTableSize;
1533 if ((TableSize != 0) && ((TableSize % DEFAULT_NAME_TABLE_ITEMS) == 0)) {
1534 if ((NewTable = new EFI_VARSTORE_ID[TableSize + DEFAULT_NAME_TABLE_ITEMS]) == NULL) {
1537 memcpy (NewTable, OldTable, TableSize);
1541 mNewVarStorageNode->mStorageInfo.mNameSpace.mNameTable[TableSize++] = Item;
1542 mNewVarStorageNode->mStorageInfo.mNameSpace.mTableSize = TableSize;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DAcpi40.h1124 UINT32 TableSize; member in struct:__anon11502
H A DAcpi50.h1788 UINT32 TableSize; member in struct:__anon11587

Completed in 96 milliseconds