Lines Matching refs:length
119 if (acpi_gbl_original_dsdt_header.length != acpi_gbl_DSDT->length || in acpi_tb_check_dsdt_header()
133 acpi_gbl_original_dsdt_header.length = acpi_gbl_DSDT->length; in acpi_tb_check_dsdt_header()
160 new_table = ACPI_ALLOCATE(table_desc->length); in acpi_tb_copy_dsdt()
163 table_desc->length)); in acpi_tb_copy_dsdt()
167 memcpy(new_table, table_desc->pointer, table_desc->length); in acpi_tb_copy_dsdt()
178 new_table->length)); in acpi_tb_copy_dsdt()
264 u32 length; in acpi_tb_parse_root_table() local
319 length = table->length; in acpi_tb_parse_root_table()
322 if (length < (sizeof(struct acpi_table_header) + table_entry_size)) { in acpi_tb_parse_root_table()
325 length)); in acpi_tb_parse_root_table()
329 table = acpi_os_map_memory(address, length); 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()
381 acpi_os_unmap_memory(table, length); in acpi_tb_parse_root_table()