Searched defs:out_string (Results 1 - 2 of 2) sorted by relevance

/drivers/acpi/acpica/
H A Dexutils.c305 * out_string - Where to put the converted string (8 bytes)
316 void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id) argument
336 out_string[0] =
338 out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F));
339 out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F));
340 out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12);
341 out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8);
342 out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4);
343 out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0);
344 out_string[
364 acpi_ex_integer_to_string(char *out_string, u64 value) argument
[all...]
/drivers/of/
H A Dbase.c1256 * @out_string: pointer to null terminated return string, modified only if
1265 * The out_string pointer is modified only if a valid string can be decoded.
1268 const char **out_string)
1277 *out_string = prop->value;
1267 of_property_read_string(struct device_node *np, const char *propname, const char **out_string) argument

Completed in 84 milliseconds