Lines Matching defs:table
49 acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table);
126 * PARAMETERS: route_table - Pointer to the routing table to dump.
130 * DESCRIPTION: Print IRQ routing table
149 /* Dump all table elements, Exit on zero length element */
166 * table - Table entry to decode the resource
170 * DESCRIPTION: Dump a resource descriptor based on a dump table entry.
175 acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table)
182 /* First table entry must contain the table length (# of table entries) */
184 count = table->offset;
188 target = ACPI_ADD_PTR(u8, resource, table->offset);
189 name = table->name;
191 switch (table->opcode) {
196 if (table->name) {
206 ACPI_CAST_PTR(char, table->pointer));
218 if (table->pointer) {
220 table->pointer[*target]);
246 table->pointer[*target & 0x01]);
252 table->pointer[*target & 0x03]);
258 table->pointer[*target & 0x07]);
264 * Note: The list length is obtained from the previous table entry
276 * Note: The list length is obtained from the previous table entry
290 * Note: The list length is obtained from the previous table entry
302 * Note: The list length is obtained from the previous table entry
314 * Note: The list length is obtained from the previous table entry
364 acpi_os_printf("**** Invalid table opcode [%X] ****\n",
365 table->opcode);
369 table++;