HomeSort by: relevance | last modified time | path
    Searched refs:Tables (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/sys/external/bsd/acpica/dist/tables/
tbfind.c 111 if (memcmp (&(AcpiGbl_RootTableList.Tables[i].Signature),
121 if (!AcpiGbl_RootTableList.Tables[i].Pointer)
125 Status = AcpiTbValidateTable (&AcpiGbl_RootTableList.Tables[i]);
131 if (!AcpiGbl_RootTableList.Tables[i].Pointer)
139 if (!memcmp (AcpiGbl_RootTableList.Tables[i].Pointer->Signature,
142 !memcmp (AcpiGbl_RootTableList.Tables[i].Pointer->OemId,
145 !memcmp (AcpiGbl_RootTableList.Tables[i].Pointer->OemTableId,
tbdata.c 73 * RETURN: TRUE if both tables are identical.
92 Status = AcpiTbAcquireTable (&AcpiGbl_RootTableList.Tables[TableIndex],
139 * tables, since the table is not fully mapped at this time.
174 * DESCRIPTION: Acquire an ACPI table. It can be used for tables not
494 * DESCRIPTION: Avoid installing duplicated tables. However table override and
516 /* Do not compare with unverified tables */
518 if (!(AcpiGbl_RootTableList.Tables[i].Flags & ACPI_TABLE_IS_VERIFIED))
537 * The assumption here is that the number of different tables that
542 * machines with many table load/unload operations), tables will
546 if (AcpiGbl_RootTableList.Tables[i].Flags
    [all...]
tbxface.c 138 AcpiGbl_RootTableList.Tables = InitialTableArray;
195 * If there are tables unverified, it is required to reallocate the
216 TableDesc = &AcpiGbl_RootTableList.Tables[i];
234 TableDesc = &AcpiGbl_RootTableList.Tables[i];
297 &(AcpiGbl_RootTableList.Tables[i].Signature), Signature))
307 if (!AcpiGbl_RootTableList.Tables[i].Pointer)
309 if ((AcpiGbl_RootTableList.Tables[i].Flags &
314 AcpiGbl_RootTableList.Tables[i].Address,
332 AcpiGbl_RootTableList.Tables[i].Pointer,
397 TableDesc = &AcpiGbl_RootTableList.Tables[i]
    [all...]
tbxfload.c 64 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT
97 /* Load the namespace from the tables */
111 "While loading namespace from ACPI tables"));
175 * PSDT tables are optional. Verify the DSDT.
177 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex];
189 * address. We must take care here because the address of the .Tables
190 * array can change dynamically as tables are loaded at run-time. Note:
217 /* Load and parse tables */
232 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked *
    [all...]
tbutils.c 170 TableDesc = &AcpiGbl_RootTableList.Tables[TableIndex];
184 &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex],
271 * NOTE: Tables are mapped (not copied) for efficiency. The FACS must
331 * so unmap the RSDP here before mapping other tables
401 &AcpiGbl_RootTableList.Tables[TableIndex].Signature,
tbinstal.c 97 AcpiTbInitTableDescriptor (&AcpiGbl_RootTableList.Tables[i],
tbfadt.c 277 * the presence of two FACS or two DSDT tables.
333 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
350 * and it contains pointers to both the DSDT and FACS tables.
355 FadtDesc = &AcpiGbl_RootTableList.Tables[AcpiGbl_FadtIndex];
377 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DisassemblerEmitter.cpp 31 /// The emitter produces the tables that the disassembler uses to translate
32 /// instructions. The emitter generates the following tables:
41 /// returned.) This allows considerable space savings in other tables.
42 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM,
52 /// occupy the same space in the decode tables. These conflicts are resolved as
56 /// (that is, the attributes specified for it in the LLVM tables specify
73 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are
75 /// (3) to fix the tables to reflect the actual context (for example, required
83 /// X86DisassemblerTables.h contains the interface for the instruction tables,
86 /// tables
    [all...]
X86DisassemblerTables.h 1 //===- X86DisassemblerTables.h - Disassembler tables ------------*- C++ -*-===//
10 // It contains the interface of the disassembler tables.
29 /// DisassemblerTables - Encapsulates all the decode tables being generated by
30 /// the table emitter. Contains functions to populate the tables as well as
35 /// The decoder tables. There is one for each opcode type:
44 std::unique_ptr<ContextDecision> Tables[8];
69 /// nnnn is the number of a table for looking up these values. The tables
70 /// are written separately so that tables consisting entirely of zeros will
104 /// stream and indent level for the UID tables generated by
107 /// @param o1 - The output stream to print the ID tables generated b
    [all...]
X86DisassemblerTables.cpp 1 //===- X86DisassemblerTables.cpp - Disassembler tables ----------*- C++ -*-===//
10 // It contains the implementation of the disassembler tables.
653 for (unsigned i = 0; i < array_lengthof(Tables); i++)
654 Tables[i] = std::make_unique<ContextDecision>();
975 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[0], ONEBYTE_STR);
976 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[1], TWOBYTE_STR);
977 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[2], THREEBYTE38_STR);
978 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[3], THREEBYTE3A_STR);
979 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[4], XOP8_MAP_STR);
980 emitContextDecision(o1, o2, i1, i2, ModRMTableNum, *Tables[5], XOP9_MAP_STR)
    [all...]
SearchableTableEmitter.cpp 1 //===- SearchableTableEmitter.cpp - Generate efficiently searchable tables -==//
10 // together with companion index tables and lookup functions (binary search,
655 // Emit tables in a deterministic order to avoid needless rebuilds.
656 SmallVector<std::unique_ptr<GenericTable>, 4> Tables;
730 Tables.emplace_back(std::move(Table));
749 // Translate legacy tables.
804 Tables.emplace_back(std::move(Table));
811 for (const auto &Table : Tables)
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
MultiOnDiskHashTable.h 1 //===- MultiOnDiskHashTable.h - Merged set of hash tables -------*- C++ -*-===//
12 // Multiple hash tables from different files are implicitly merged to improve
39 /// A collection of on-disk hash tables, merged when relevant for performance.
42 /// A handle to a file, used when overriding tables.
81 /// The current set of on-disk and merged tables.
86 TableVector Tables;
88 /// Files corresponding to overridden tables that we've not yet
104 /// The current set of on-disk tables.
105 table_range tables() { function in class:clang::serialization::MultiOnDiskHashTable
106 auto Begin = Tables.begin(), End = Tables.end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp 124 void printCOFFLoadConfig(const T *Conf, LoadConfigTables &Tables);
787 LoadConfigTables Tables;
789 printCOFFLoadConfig(Obj->getLoadConfig64(), Tables);
791 printCOFFLoadConfig(Obj->getLoadConfig32(), Tables);
793 if (Tables.SEHTableVA) {
795 printRVATable(Tables.SEHTableVA, Tables.SEHTableCount, 4);
804 if (Tables.GuardFidTableVA) {
806 if (Tables.GuardFlags & uint32_t(coff_guard_flags::FidTableHasFlags))
807 printRVATable(Tables.GuardFidTableVA, Tables.GuardFidTableCount, 5
    [all...]
  /src/games/sail/
globals.c 419 const struct Tables RigTable[11][6] = {
432 const struct Tables HullTable[11][6] = {
extern.h 226 struct Tables {
229 extern const struct Tables RigTable[11][6];
230 extern const struct Tables HullTable[11][6];
assorted.c 58 const struct Tables *tp;
pl_3.c 183 const struct Tables *t;
  /src/sys/external/bsd/acpica/dist/namespace/
nsload.c 135 AcpiGbl_RootTableList.Tables[TableIndex].OwnerId);
201 * but the SSDT and PSDT tables are optional.
  /src/sys/dev/acpi/
acpi_dev.c 173 tdesc = &AcpiGbl_RootTableList.Tables[i];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 143 ArrayRef<wasm::WasmTable> tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
278 std::vector<wasm::WasmTable> Tables;
  /src/sys/external/bsd/acpica/dist/common/
adisasm.c 163 AcpiGbl_RootTableList.Tables = LocalTables;
204 /* Get the list of all AML tables in the file */
210 AcpiOsPrintf ("Could not get ACPI tables from %s, %s\n",
228 AcpiOsPrintf ("Could not get ACPI tables, %s\n",
238 /* Obtained the local tables, just disassemble the DSDT */
279 /* Disassemble all AML tables within the file */
394 * Always parse the tables, only option is what to display
399 AcpiOsPrintf ("Could not parse ACPI tables, %s\n",
570 AcpiOsPrintf ("Could not parse ACPI tables, %s\n",
610 * DESCRIPTION: Process all tables found in the -e external files lis
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 322 void writeTableSection(ArrayRef<wasm::WasmTable> Tables);
895 void WasmObjectWriter::writeTableSection(ArrayRef<wasm::WasmTable> Tables) {
896 if (Tables.empty())
902 encodeULEB128(Tables.size(), W->OS);
903 for (const wasm::WasmTable &Table : Tables) {
1403 SmallVector<wasm::WasmTable, 1> Tables;
1627 Table.Index = NumTableImports + Tables.size();
1631 Tables.push_back(Table);
1859 writeTableSection(Tables);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 612 wasm::WasmTable &Table = Tables[TableNumber];
1105 Tables.reserve(Count);
1109 T.Index = NumImportedTables + Tables.size();
1110 Tables.push_back(T);
1111 auto ElemType = Tables.back().Type.ElemType;
1230 return Index < NumImportedTables + Tables.size();
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 432 encodeULEB128(Section.Tables.size(), OS);
434 for (auto &Table : Section.Tables) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 306 std::vector<Table> Tables;

Completed in 37 milliseconds

1 2 3