Lines Matching refs:table

1605     struct acpi_table_header *table;  in acpi_xsdt_modify_entry()  local
1610 table = acpi_os_map_memory(entry[i], size); in acpi_xsdt_modify_entry()
1611 if ( ACPI_COMPARE_NAME(table->signature, signature) ) in acpi_xsdt_modify_entry()
1614 acpi_os_unmap_memory(table, size); in acpi_xsdt_modify_entry()
1617 acpi_os_unmap_memory(table, size); in acpi_xsdt_modify_entry()
1623 struct acpi_table_header *table = NULL; in acpi_create_xsdt() local
1638 table = acpi_os_map_memory(rsdp_tbl->xsdt_physical_address, in acpi_create_xsdt()
1642 table_size = table->length + sizeof(u64); in acpi_create_xsdt()
1643 entry_count = (table->length - sizeof(struct acpi_table_header)) in acpi_create_xsdt()
1647 memcpy(base_ptr, table, table->length); in acpi_create_xsdt()
1648 acpi_os_unmap_memory(table, sizeof(struct acpi_table_header)); in acpi_create_xsdt()
1671 struct acpi_table_header *table = NULL; in acpi_create_stao() local
1679 status = acpi_get_table(ACPI_SIG_MADT, 0, &table); in acpi_create_stao()
1690 memcpy(base_ptr, table, sizeof(struct acpi_table_header)); in acpi_create_stao()
1708 struct acpi_table_header *table = NULL; in acpi_create_madt() local
1718 status = acpi_get_table(ACPI_SIG_MADT, 0, &table); in acpi_create_madt()
1729 memcpy(base_ptr, table, table_size); in acpi_create_madt()
1765 struct acpi_table_header *table = NULL; in acpi_create_fadt() local
1772 status = acpi_get_table(ACPI_SIG_FADT, 0, &table); in acpi_create_fadt()
1782 table_size = table->length; in acpi_create_fadt()
1785 memcpy(base_ptr, table, table_size); in acpi_create_fadt()
1805 struct acpi_table_header *table; in estimate_acpi_efi_size() local
1829 table = acpi_os_map_memory(rsdp_tbl->xsdt_physical_address, in estimate_acpi_efi_size()
1832 if ( !table ) in estimate_acpi_efi_size()
1839 acpi_size += ROUNDUP(table->length + sizeof(u64), 8); in estimate_acpi_efi_size()
1840 acpi_os_unmap_memory(table, sizeof(struct acpi_table_header)); in estimate_acpi_efi_size()