HomeSort by: relevance | last modified time | path
    Searched defs:Subtable (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
dtsubtable.c 56 * RetSubtable - Returned newly created subtable
60 * DESCRIPTION: Create a subtable that is not listed with ACPI_DMTABLE_INFO
72 DT_SUBTABLE *Subtable;
76 Subtable = UtSubtableCacheCalloc ();
78 /* Create a new buffer for the subtable data */
81 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
82 memcpy (Subtable->Buffer, Buffer, Length);
84 Subtable->Length = Length;
85 Subtable->TotalLength = Length;
87 *RetSubtable = Subtable;
    [all...]
dttable.c 68 DT_SUBTABLE *Subtable;
88 /* Compile the "extended" part of the RSDP as a subtable */
91 &Subtable);
97 DtInsertSubtable (AslGbl_RootTable, Subtable);
101 RsdpExtension = ACPI_CAST_PTR (ACPI_RSDP_EXTENSION, Subtable->Buffer);
102 RsdpExtension->Length = AslGbl_RootTable->Length + Subtable->Length;
129 DT_SUBTABLE *Subtable;
144 &Subtable);
151 DtInsertSubtable (ParentTable, Subtable);
167 &Subtable);
    [all...]
dtcompile.c 293 DT_SUBTABLE *Subtable;
433 Subtable = NULL;
435 &Subtable);
441 DtInsertSubtable (AslGbl_RootTable, Subtable);
477 * DESCRIPTION: Compile a subtable
489 DT_SUBTABLE *Subtable;
513 /* Ignore optional subtable if name does not match */
528 Subtable = UtSubtableCacheCalloc ();
533 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
536 Subtable->Length = Length
    [all...]
dttable2.c 69 DT_SUBTABLE *Subtable;
83 /* LPIT Subtable header */
86 &Subtable);
93 DtInsertSubtable (ParentTable, Subtable);
94 DtPushSubtable (Subtable);
96 LpitHeader = ACPI_CAST_PTR (ACPI_LPIT_HEADER, Subtable->Buffer);
111 /* LPIT Subtable */
113 Status = DtCompileTable (PFieldList, InfoTable, &Subtable);
120 DtInsertSubtable (ParentTable, Subtable);
145 DT_SUBTABLE *Subtable;
    [all...]
dttable1.c 94 DT_SUBTABLE *Subtable;
115 &Subtable);
122 DtInsertSubtable (ParentTable, Subtable);
124 /* Everything past the error node header will be a subtable */
126 DtPushSubtable (Subtable);
132 ErrorNodeHeader = ACPI_CAST_PTR (ACPI_AEST_HEADER, Subtable->Buffer);
193 AcpiOsPrintf ("Unknown AEST Subtable Type: %X\n",
198 Status = DtCompileTable (PFieldList, InfoTable, &Subtable);
206 Offset += Subtable->Length;
210 DtInsertSubtable (ParentTable, Subtable);
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
dmtbdump3.c 175 ACPI_SUBTABLE_HEADER *Subtable;
189 Subtable = ACPI_ADD_PTR (ACPI_SUBTABLE_HEADER, Table, Offset);
192 /* Common subtable header */
195 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
196 Subtable->Length, AcpiDmTableInfoSratHdr);
202 switch (Subtable->Type)
245 AcpiOsPrintf ("\n**** Unknown SRAT subtable type 0x%X\n",
246 Subtable->Type);
250 if (!Subtable->Length)
252 AcpiOsPrintf ("Invalid zero length subtable\n")
    [all...]
dmtbdump1.c 84 ACPI_AEST_HEADER *Subtable;
101 /* Dump the common error node (subtable) header */
112 /* Setup the node-specific subtable based on the header Type field */
168 AcpiOsPrintf ("\n**** Unknown AEST Error Subtable type 0x%X\n",
176 Subtable = ACPI_ADD_PTR (ACPI_AEST_HEADER, Table, Offset);
179 /* Dump the node-specific subtable */
181 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable, Length,
200 ProcessorSubtable = ACPI_CAST_PTR (ACPI_AEST_PROCESSOR, Subtable);
204 /* Setup the Resource Substructure subtable */
231 /* Dump the resource substructure subtable */
    [all...]
dmtbdump2.c 126 /* Common subtable header */
222 /* Dump the node subtable header */
373 /* Point to next node subtable */
403 ACPI_IOVT_IOMMU *Subtable;
436 AcpiOsPrintf ("\n**** Unknown IOVT subtable type 0x%X\n",
443 AcpiOsPrintf ("Invalid zero length subtable\n");
449 /* Dump the subtable */
462 Subtable = ACPI_ADD_PTR (ACPI_IOVT_IOMMU, Table, Offset);
464 EntryOffset = Offset + Subtable->DeviceEntryOffset;
502 } while (EntryOffset < (Offset + Subtable->Header.Length))
    [all...]

Completed in 23 milliseconds