Lines Matching defs:length
18 static void acpi_tb_fix_string(char *string, acpi_size length);
29 * length - Maximum length
38 static void acpi_tb_fix_string(char *string, acpi_size length)
41 while (length && *string) {
47 length--;
99 /* FACS only has signature and length fields */
103 header->length));
118 header)->length : 20,
130 local_header.length, local_header.revision,
143 * length - Length of entire table
152 acpi_status acpi_tb_verify_checksum(struct acpi_table_header *table, u32 length)
168 checksum = acpi_tb_checksum(ACPI_CAST_PTR(u8, table), length);
192 * length - Length of this memory region
200 u8 acpi_tb_checksum(u8 *buffer, u32 length)
203 u8 *end = buffer + length;