HomeSort by: relevance | last modified time | path
    Searched defs:Table (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.y 4 * Module Name: dtcompilerparser.y - Bison input file for table compiler parser
207 %type <f> Table
220 Table
dttable.c 241 ACPI_TABLE_FADT *Table;
248 /* Get the table revision and 32-bit DSDT Address definition */
261 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
262 Revision = Table->Header.Revision;
263 DsdtAddress = Table->Dsdt;
310 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
311 X_DsdtAddress = Table->XDsdt;
384 /* Large FACS reserved area at the end of the table */
dttable1.c 183 * NOTE: Assumes the following table structure:
191 * AEST - ARM Error Source table. Conforms to:
862 * Note: Main table consists of only the CDAT table header
863 * (This is not the standard ACPI table header, however)--
1023 /* Compile table with first "Interleave target" */
1042 DtInsertSubtable (ParentTable, Subtable); /* Insert AcpiDmTableInfoCedt1 table so we can put in */
1059 DtInsertSubtable (ParentTable, Subtable); /* got a target, so insert table. */
1073 /* Compile table with first "Xor map" */
1089 DtInsertSubtable (ParentTable, Subtable); /* Insert AcpiDmTableInfoCedt2 table so we can put in *
    [all...]
  /src/sys/external/bsd/acpica/dist/debugger/
dbfileio.c 236 * DESCRIPTION: Load ACPI tables from a previously constructed table list.
246 ACPI_TABLE_HEADER *Table;
254 Table = TableListHead->Table;
256 Status = AcpiLoadTable (Table, NULL);
261 AcpiOsPrintf ("Table %4.4s is already installed\n",
262 Table->Signature);
266 AcpiOsPrintf ("Could not install table, %s\n",
273 AcpiOsPrintf ("Acpi table [%4.4s] successfully installed and loaded\n",
274 Table->Signature)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
boxdraw.c 129 UNICODE_TO_CHAR *Table;
140 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
141 if (Graphic == Table->Unicode) {
143 *PcAnsi = Table->PcAnsi;
146 *Ascii = Table->Ascii;
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsinit.c 210 * We are only interested in NS nodes owned by the table that
301 * PARAMETERS: TableDesc - Descriptor for parent ACPI table
318 ACPI_TABLE_HEADER *Table;
354 Status = AcpiGetTableByIndex (TableIndex, &Table);
360 /* DSDT is always the first AML table */
362 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT))
365 "\nACPI table initialization:\n"));
371 "Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
373 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount
    [all...]
dsopcode.c 636 ACPI_TABLE_HEADER *Table;
645 * and OemTableId string of the Data Table Region declaration
676 /* Find the ACPI table */
687 "ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
695 Status = AcpiGetTableByIndex (TableIndex, &Table);
708 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
709 ObjDesc->Region.Length = Table->Length;
710 ObjDesc->Region.Pointer = Table;
  /src/sys/external/bsd/acpica/dist/namespace/
nsparse.c 169 * PARAMETERS: TableDesc - An ACPI table descriptor for table to parse
170 * StartNode - Where to enter the table into the namespace
174 * DESCRIPTION: Load ACPI/AML table by executing the entire table as a single
178 * as the table is parsed. Some AML code depends on this behavior.
183 * Note: This causes the table to only have a single-pass parse.
194 ACPI_TABLE_HEADER *Table;
205 Status = AcpiGetTableByIndex (TableIndex, &Table);
211 /* Table must consist of at least a complete header *
    [all...]
nsxfname.c 658 * PARAMETERS: Buffer - An ACPI table containing one control method
673 ACPI_TABLE_HEADER *Table = ACPI_CAST_PTR (ACPI_TABLE_HEADER, Buffer);
693 /* Table must be a DSDT or SSDT */
695 if (!ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT) &&
696 !ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_SSDT))
701 /* First AML opcode in the table must be a control method */
  /src/sys/external/bsd/acpica/dist/tables/
tbinstal.c 3 * Module Name: tbinstal - ACPI table installation and removal
164 * PARAMETERS: NewTableDesc - New table descriptor to install
166 * TableIndex - Where the table index is returned
170 * DESCRIPTION: Install an ACPI table into the global data structure. The
171 * table override mechanism is called to allow the host
172 * OS to replace any table before it is installed in the root
173 * table array.
194 * ACPI Table Override:
196 * Before we install the table, let the host OS override it with a new
197 * one if desired. Any table within the RSDT/XSDT can be replaced
    [all...]
tbxfload.c 3 * Module Name: tbxfload - Table load/unload external interfaces
261 ACPI_TABLE_DESC *Table;
285 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex];
288 !ACPI_COMPARE_NAMESEG (Table->Signature.Ascii, ACPI_SIG_DSDT) ||
289 ACPI_FAILURE (AcpiTbValidateTable (Table)))
301 AcpiGbl_DSDT = Table->Pointer;
319 * Save the original DSDT header for detection of table corruption
332 ACPI_EXCEPTION ((AE_INFO, Status, "[DSDT] table load failed"));
344 Table = &AcpiGbl_RootTableList.Tables[i];
346 if (!Table->Address |
    [all...]
tbutils.c 3 * Module Name: tbutils - ACPI Table utilities
260 * PARAMETERS: TableIndex - Index of installed table to copy
308 * PARAMETERS: TableEntry - Pointer to the RSDT/XSDT table entry
311 * RETURN: Physical address extracted from the root table
313 * DESCRIPTION: Get one root table entry. Handles 32-bit and 64-bit cases on
331 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT):
337 * 32-bit platform, RSDT: Return 32-bit table entry
377 * Table (RSDT or XSDT)
393 ACPI_TABLE_HEADER *Table;
431 /* Root table is an RSDT (32-bit physical addresses) *
    [all...]
tbdata.c 3 * Module Name: tbdata - Table manager data structure functions
178 * PARAMETERS: TableDesc - Table 1 descriptor to be compared
179 * TableIndex - Index of table 2 to be compared
183 * DESCRIPTION: This function compares a table with another table that has
184 * already been installed in the root table list.
195 ACPI_TABLE_HEADER *Table;
201 &Table, &TableLength, &TableFlags);
208 * Check for a table match on the entire table length
    [all...]
tbfadt.c 3 * Module Name: tbfadt - FADT table utilities
185 /* Table for conversion of FADT to common internal format and FADT validation */
266 /* Table used to split Event Blocks into separate status/enable registers */
451 ACPI_TABLE_HEADER *Table;
464 Status = AcpiTbGetTable (FadtDesc, &Table);
472 * Validate the FADT checksum before we copy the table. Ignore
475 (void) AcpiUtVerifyChecksum (Table, Length);
479 AcpiTbCreateLocalFadt (Table, Length);
518 * PARAMETERS: Table - Pointer to BIOS FADT
519 * Length - Length of the table
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apdump.c 159 ACPI_TABLE_HEADER *Table,
168 * PARAMETERS: Table - Pointer to table to be validated
172 * DESCRIPTION: Check for a valid ACPI table header
178 ACPI_TABLE_HEADER *Table)
181 if (!ACPI_VALIDATE_RSDP_SIG (Table->Signature))
185 if (!AcpiUtValidNameseg (Table->Signature))
187 fprintf (stderr, "Table signature (0x%8.8X) is invalid\n",
188 *(UINT32 *) Table->Signature);
192 /* Check for minimum table length *
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adisasm.c 173 ACPI_TABLE_HEADER *Table,
180 ACPI_TABLE_HEADER *Table,
267 /* Setup the Table Manager (cheat - there is no RSDT) */
288 * DESCRIPTION: Disassembler entry point. Disassemble an entire ACPI table.
302 ACPI_TABLE_HEADER *Table = NULL;
348 Status = AcpiGetTable (ACPI_SIG_DSDT, 0, &Table);
357 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
391 Status = AdDisassembleOneTable (ListHead->Table,
403 if (Table &&
405 !AcpiUtIsAmlTable (Table))
    [all...]
acfileio.c 169 ACPI_TABLE_HEADER **Table);
173 ACPI_TABLE_HEADER *Table);
210 * PARAMETERS: Filename - Table filename
212 * ReturnListHead - Where table list is returned
230 ACPI_TABLE_HEADER *Table = NULL;
260 /* We must have at least one ACPI table header */
273 " %s: File does not appear to contain a valid AML table\n",
283 /* Get one entire ACPI table */
286 Filename, File, GetOnlyAmlTables, &Table);
303 /* Print table header for iASL/disassembler only *
    [all...]
dmtbdump1.c 168 * PARAMETERS: Table - A AEST table
172 * DESCRIPTION: Format the contents of a AEST table
174 * NOTE: Assumes the following table structure:
181 * AEST - ARM Error Source table. Conforms to:
188 ACPI_TABLE_HEADER *Table)
198 UINT8 Revision = Table->Revision;
203 /* Very small, generic main table. AEST consists of mostly subtables */
205 while (Offset < Table->Length)
207 NodeHeader = ACPI_ADD_PTR (ACPI_AEST_HEADER, Table, Offset)
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exconfig.c 184 * PARAMETERS: Table - Pointer to raw table
185 * ParentNode - Where to load the table (scope)
186 * DdbHandle - Where to return the table handle.
190 * DESCRIPTION: Common function to Install and Load an ACPI table with a
191 * returned table handle.
206 /* Create an object to be the table handle */
214 /* Init the table handle */
233 * DESCRIPTION: Load an ACPI table from the RSDT/XSDT
265 /* Find the ACPI table in the RSDT/XSDT *
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aetables.c 3 * Module Name: aetables - ACPI table setup/install for acpiexec utility
171 /* User table (DSDT) */
221 /* This code exercises the table override mechanism in the core */
241 * PARAMETERS: Header - A valid standard ACPI table header
243 * Length - Length of the table
247 * DESCRIPTION: Initialize the table header for a local ACPI table.
284 * DESCRIPTION: Build a complete ACPI table chain, with a local RSDP, XSDT,
302 * Update the table count. For the DSDT, it is not put into the XSDT.
303 * For the FADT, this table is already accounted for since we usuall
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.cpp 156 static const char Table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
163 Res += Table[(x >> 18) & 63];
164 Res += Table[(x >> 12) & 63];
165 Res += Table[(x >> 6) & 63];
166 Res += Table[x & 63];
170 Res += Table[(x >> 18) & 63];
171 Res += Table[(x >> 12) & 63];
175 Res += Table[(x >> 18) & 63];
176 Res += Table[(x >> 12) & 63];
177 Res += Table[(x >> 6) & 63]
    [all...]
FuzzerTracePC.h 26 // We record the arguments of CMP instructions in this table unconditionally
30 // this table to populate a Dictionary.
40 Table[Idx].A = Arg1;
41 Table[Idx].B = Arg2;
44 Pair Get(size_t I) { return Table[I % kSize]; }
46 Pair Table[kSize];
  /src/games/cribbage/
crib.c 468 static CARD Table[14];
487 Tcnt = 0; /* index to table of cards played */
521 l = pegscore(ch[i], Table, Tcnt, sum);
532 Table[Tcnt++] = crd;
580 i = pegscore(crd, Table, Tcnt, sum);
582 Table[Tcnt++] = crd;
628 * Print out the table with the current score
633 prhand(Table, Tcnt, Tablewin, FALSE);
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osbsdtbl.c 176 ACPI_TABLE_HEADER **Table);
186 ACPI_TABLE_HEADER **Table,
236 * PARAMETERS: Address - Physical address of the ACPI table
237 * Table - Where a pointer to the table is returned
239 * RETURN: Status; Table buffer is returned if AE_OK.
240 * AE_NOT_FOUND: A valid table was not found at the address
242 * DESCRIPTION: Get an ACPI table via a physical memory address.
249 ACPI_TABLE_HEADER **Table)
260 fprintf (stderr, "Invalid table address: 0x%8.8X%8.8X\n"
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpibin/
abcompare.c 192 * DESCRIPTION: Check for valid ACPI table header
254 * PARAMETERS: Header - An ACPI table header
274 printf ("OEM Table ID : %.8s\n", Header->OemTableId);
294 printf ("OEM Table ID %8.8s : %.8s\n", Header->OemTableId, Header2->OemTableId);
306 * DESCRIPTION: Display an ACPI table header
330 printf ("File %s does not contain a valid ACPI table header\n", FilePath);
347 * DESCRIPTION: Compute proper checksum for an ACPI table
356 ACPI_TABLE_HEADER *Table;
371 printf ("File %s does not contain a valid ACPI table header\n", FilePath);
385 /* Allocate a buffer to hold the entire table */
    [all...]

Completed in 29 milliseconds

1 2