Lines Matching refs:table
285 struct acpi_table_header *table; in acpi_tb_parse_root_table() local
331 table = acpi_os_map_memory(address, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
332 if (!table) { in acpi_tb_parse_root_table()
336 acpi_tb_print_table_header(address, table); in acpi_tb_parse_root_table()
342 length = table->length; in acpi_tb_parse_root_table()
343 acpi_os_unmap_memory(table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
352 table = acpi_os_map_memory(address, length); in acpi_tb_parse_root_table()
353 if (!table) { in acpi_tb_parse_root_table()
359 status = acpi_tb_verify_checksum(table, length); in acpi_tb_parse_root_table()
361 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()
367 table_count = (u32)((table->length - sizeof(struct acpi_table_header)) / in acpi_tb_parse_root_table()
369 table_entry = ACPI_ADD_PTR(u8, table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
410 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()