Lines Matching refs:table
262 struct acpi_table_header *table; in acpi_tb_parse_root_table() local
308 table = acpi_os_map_memory(address, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
309 if (!table) { in acpi_tb_parse_root_table()
313 acpi_tb_print_table_header(address, table); in acpi_tb_parse_root_table()
319 length = table->length; in acpi_tb_parse_root_table()
320 acpi_os_unmap_memory(table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
329 table = acpi_os_map_memory(address, length); in acpi_tb_parse_root_table()
330 if (!table) { in acpi_tb_parse_root_table()
336 status = acpi_tb_verify_checksum(table, length); in acpi_tb_parse_root_table()
338 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()
344 table_count = (u32)((table->length - sizeof(struct acpi_table_header)) / in acpi_tb_parse_root_table()
346 table_entry = ACPI_ADD_PTR(u8, table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
381 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()