Lines Matching refs:table
273 struct acpi_table_header *table; in acpi_tb_parse_root_table() local
319 table = acpi_os_map_memory(address, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
320 if (!table) { in acpi_tb_parse_root_table()
324 acpi_tb_print_table_header(address, table); in acpi_tb_parse_root_table()
330 length = table->length; in acpi_tb_parse_root_table()
331 acpi_os_unmap_memory(table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
340 table = acpi_os_map_memory(address, length); in acpi_tb_parse_root_table()
341 if (!table) { in acpi_tb_parse_root_table()
347 status = acpi_tb_verify_checksum(table, length); in acpi_tb_parse_root_table()
349 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()
355 table_count = (u32)((table->length - sizeof(struct acpi_table_header)) / in acpi_tb_parse_root_table()
357 table_entry = ACPI_ADD_PTR(u8, table, sizeof(struct acpi_table_header)); in acpi_tb_parse_root_table()
398 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()