Home
last modified time | relevance | path

Searched refs:Subtable (Results 1 – 6 of 6) sorted by relevance

/NextBSD/sys/contrib/dev/acpica/compiler/
HDdttable.c99 DT_SUBTABLE *Subtable; in DtCompileTwoSubtables() local
104 Status = DtCompileTable (PFieldList, TableInfo1, &Subtable, TRUE); in DtCompileTwoSubtables()
111 DtInsertSubtable (ParentTable, Subtable); in DtCompileTwoSubtables()
115 Status = DtCompileTable (PFieldList, TableInfo2, &Subtable, FALSE); in DtCompileTwoSubtables()
121 DtInsertSubtable (ParentTable, Subtable); in DtCompileTwoSubtables()
144 DT_SUBTABLE *Subtable; in DtCompileFacs() local
162 DtCreateSubtable (ReservedBuffer, ReservedSize, &Subtable); in DtCompileFacs()
165 DtInsertSubtable (Gbl_RootTable, Subtable); in DtCompileFacs()
186 DT_SUBTABLE *Subtable; in DtCompileRsdp() local
209 &Subtable, TRUE); in DtCompileRsdp()
[all …]
HDdtsubtable.c73 DT_SUBTABLE *Subtable; in DtCreateSubtable() local
77 Subtable = UtSubtableCacheCalloc (); in DtCreateSubtable()
82 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String); in DtCreateSubtable()
83 memcpy (Subtable->Buffer, Buffer, Length); in DtCreateSubtable()
85 Subtable->Length = Length; in DtCreateSubtable()
86 Subtable->TotalLength = Length; in DtCreateSubtable()
88 *RetSubtable = Subtable; in DtCreateSubtable()
108 DT_SUBTABLE *Subtable) in DtInsertSubtable() argument
113 Subtable->Peer = NULL; in DtInsertSubtable()
114 Subtable->Parent = ParentTable; in DtInsertSubtable()
[all …]
HDdtcompile.c287 DT_SUBTABLE *Subtable; in DtCompileDataTable() local
383 Subtable = NULL; in DtCompileDataTable()
385 &Subtable, TRUE); in DtCompileDataTable()
391 DtInsertSubtable (Gbl_RootTable, Subtable); in DtCompileDataTable()
440 DT_SUBTABLE *Subtable; in DtCompileTable() local
471 Subtable = UtSubtableCacheCalloc (); in DtCompileTable()
476 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String); in DtCompileTable()
479 Subtable->Length = Length; in DtCompileTable()
480 Subtable->TotalLength = Length; in DtCompileTable()
481 Buffer = Subtable->Buffer; in DtCompileTable()
[all …]
HDdtio.c70 DT_SUBTABLE *Subtable,
83 DT_SUBTABLE *Subtable,
89 DT_SUBTABLE *Subtable,
790 DT_SUBTABLE *Subtable, in DtWriteBinary() argument
795 FlWriteFile (ASL_FILE_AML_OUTPUT, Subtable->Buffer, Subtable->Length); in DtWriteBinary()
979 DT_SUBTABLE *Subtable, in DtDumpSubtableInfo() argument
986 Subtable->Depth, Subtable->Name, Subtable->Length, Subtable->TotalLength, in DtDumpSubtableInfo()
987 Subtable->SizeOfLengthField, Subtable->Flags, Subtable, in DtDumpSubtableInfo()
988 Subtable->Parent, Subtable->Child, Subtable->Peer); in DtDumpSubtableInfo()
993 DT_SUBTABLE *Subtable, in DtDumpSubtableTree() argument
[all …]
HDdtcompiler.h234 DT_SUBTABLE *Subtable);
238 DT_SUBTABLE *Subtable);
251 DT_SUBTABLE *Subtable);
260 DT_SUBTABLE *Subtable);
339 DT_SUBTABLE *Subtable,
HDdtutils.c55 DT_SUBTABLE *Subtable,
666 DT_SUBTABLE *Subtable, in DtSum() argument
674 Checksum = AcpiTbChecksum (Subtable->Buffer, Subtable->Length); in DtSum()