Home
last modified time | relevance | path

Searched refs:TableData (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Ddttemplate.c67 const ACPI_DMTABLE_DATA *TableData);
232 const ACPI_DMTABLE_DATA *TableData; in DtCreateOneTemplateFile() local
265 TableData = AcpiDmGetTableData (Signature); in DtCreateOneTemplateFile()
266 if (TableData) in DtCreateOneTemplateFile()
268 if (!TableData->Template) in DtCreateOneTemplateFile()
281 Status = DtCreateOneTemplate (Signature, TableCount, TableData); in DtCreateOneTemplateFile()
302 const ACPI_DMTABLE_DATA *TableData; in DtCreateAllTemplates() local
310 for (TableData = AcpiDmTableData; TableData->Signature; TableData++) in DtCreateAllTemplates()
314 if (TableData->Template) in DtCreateAllTemplates()
316 Status = DtCreateOneTemplate (TableData->Signature, in DtCreateAllTemplates()
[all …]
H A Ddtcompile.c292 const ACPI_DMTABLE_DATA *TableData; in DtCompileDataTable() local
406 TableData = AcpiDmGetTableData (Signature); in DtCompileDataTable()
407 if (!TableData || AslGbl_CompileGeneric) in DtCompileDataTable()
417 if (TableData->CmTableHandler) in DtCompileDataTable()
421 Status = TableData->CmTableHandler ((void **) FieldList); in DtCompileDataTable()
427 else if (TableData->TableInfo) in DtCompileDataTable()
434 Status = DtCompileTable (FieldList, TableData->TableInfo, in DtCompileDataTable()
H A Daslutils.c324 const AH_TABLE *TableData; in UtDisplaySupportedTables() local
335 for (TableData = AcpiGbl_SupportedTables, i = 1; in UtDisplaySupportedTables()
336 TableData->Signature; TableData++, i++) in UtDisplaySupportedTables()
339 TableData->Signature, TableData->Description); in UtDisplaySupportedTables()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp770 DWARFDataExtractor TableData(DebugLineData, EndOffset); in parse() local
773 if (TableData.getAddressSize() == 0) in parse()
774 TableData.setAddressSize(Prologue.getAddressSize()); in parse()
777 Prologue.getAddressSize() == TableData.getAddressSize()); in parse()
805 uint8_t Opcode = TableData.getU8(Cursor); in parse()
814 uint64_t Len = TableData.getULEB128(Cursor); in parse()
830 uint8_t SubOpcode = TableData.getU8(Cursor); in parse()
864 uint8_t ExtractorAddressSize = TableData.getAddressSize(); in parse()
885 TableData.skip(Cursor, OpcodeAddressSize); in parse()
887 TableData.setAddressSize(OpcodeAddressSize); in parse()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/os_specific/service_layers/
H A Doslinuxtbl.c840 UINT8 *TableData; in OslListBiosTables() local
851 TableData = ACPI_CAST8 (Gbl_Xsdt) + sizeof (ACPI_TABLE_HEADER); in OslListBiosTables()
859 TableData = ACPI_CAST8 (Gbl_Rsdt) + sizeof (ACPI_TABLE_HEADER); in OslListBiosTables()
867 for (i = 0; i < NumberOfTables; ++i, TableData += ItemSize) in OslListBiosTables()
872 (ACPI_PHYSICAL_ADDRESS) (*ACPI_CAST64 (TableData)); in OslListBiosTables()
877 (ACPI_PHYSICAL_ADDRESS) (*ACPI_CAST32 (TableData)); in OslListBiosTables()
931 UINT8 *TableData; in OslGetBiosTable() local
1055 TableData = ACPI_CAST8 (Gbl_Xsdt) + sizeof (ACPI_TABLE_HEADER); in OslGetBiosTable()
1063 TableData = ACPI_CAST8 (Gbl_Rsdt) + sizeof (ACPI_TABLE_HEADER); in OslGetBiosTable()
1071 for (i = 0; i < NumberOfTables; ++i, TableData += ItemSize) in OslGetBiosTable()
[all …]
/netbsd-src/sys/external/bsd/acpica/dist/common/
H A Ddmtable.c662 const ACPI_DMTABLE_DATA *TableData;
744 TableData = AcpiDmGetTableData (Table->Signature); in AcpiDmDumpDataTable()
745 if (!TableData) in AcpiDmDumpDataTable()
770 else if (TableData->TableHandler) in AcpiDmDumpDataTable()
774 TableData->TableHandler (Table); in AcpiDmDumpDataTable()
776 else if (TableData->TableInfo) in AcpiDmDumpDataTable()
780 Status = AcpiDmDumpTable (Length, 0, Table, 0, TableData->TableInfo); in AcpiDmDumpDataTable()
940 const AH_TABLE *TableData; in AcpiDmLineHeader2()
1371 TableData = AcpiAhGetTableInfo (ACPI_CAST_PTR (char, Target)); in AcpiDmDumpTable()
1372 if (TableData) in AcpiDmDumpTable()
720 const ACPI_DMTABLE_DATA *TableData; AcpiDmDumpDataTable() local
998 const AH_TABLE *TableData; AcpiDmDumpTable() local
[all...]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp1858 SmallString<4096> TableData; in WriteHeaderSearch() local
1863 llvm::raw_svector_ostream Out(TableData); in WriteHeaderSearch()
1882 NumHeaderSearchEntries, TableData.size()}; in WriteHeaderSearch()
1883 TableData.append(GeneratorTrait.strings_begin(),GeneratorTrait.strings_end()); in WriteHeaderSearch()
1884 Stream.EmitRecordWithBlob(TableAbbrev, Record, TableData); in WriteHeaderSearch()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2424 const uint8_t *TableData = reinterpret_cast<const uint8_t *>(GnuHashTable); in checkGNUHashTable() local
2425 assert(TableData >= Obj.base() && TableData < Obj.base() + Obj.getBufSize() && in checkGNUHashTable()
2428 uint64_t TableOffset = TableData - Obj.base(); in checkGNUHashTable()