Lines Matching refs:pTable
425 * @param pTable Where to create the DMI table.
434 int FwCommonPlantDMITable(PPDMDEVINS pDevIns, uint8_t *pTable, unsigned cbMax, PCRTUUID pUuid, PCFGMNODE pCfg, uint16_t cCpus, uint16_t *pcbDmiTables, uint16_t *pcNumDmiTables)
451 size_t cbNeed = (size_t)(pszStr + cbWant - (char *)pTable) + 5; /* +1 for strtab terminator +4 for end-of-table entry */ \
573 char *pszStr = (char *)pTable;
920 *pcbDmiTables = ((uintptr_t)pszStr - (uintptr_t)pTable) + 2;
1009 * @param pTable Where to write the table.
1013 void FwCommonPlantMpsTable(PPDMDEVINS pDevIns, uint8_t *pTable, unsigned cbMax, uint16_t cCpus)
1016 PMPSCFGTBLHEADER pCfgTab = (MPSCFGTBLHEADER*)pTable;
1132 pCfgTab->u16Length = (uint8_t*)pIrqEntry - pTable;
1133 pCfgTab->u8Checksum = fwCommonChecksum(pTable, pCfgTab->u16Length);