Lines Matching defs:out_string
277 * PARAMETERS: out_string - Where to put the converted string (8 bytes)
289 void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id)
310 out_string[0] =
312 out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
313 out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
314 out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
315 out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
316 out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
317 out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
318 out_string[7] = 0;
325 * PARAMETERS: out_string - Where to put the converted string. At least
330 * RETURN: Converted string in out_string
338 void acpi_ex_integer_to_string(char *out_string, u64 value)
347 out_string[digits_needed] = 0;
351 out_string[count - 1] = (char)('0' + remainder);
359 * PARAMETERS: out_string - Where to put the converted string (7 bytes)
362 * RETURN: Converted string in out_string
371 void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3])
378 out_string[0] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 4);
379 out_string[1] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 0);
380 out_string[2] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 4);
381 out_string[3] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 0);
382 out_string[4] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 4);
383 out_string[5] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 0);
384 out_string[6] = 0;