Home
last modified time | relevance | path

Searched refs:hex_char (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/acpi/acpica/
H A Ddbconvert.c28 acpi_status acpi_db_hex_char_to_value(int hex_char, u8 *return_value) in acpi_db_hex_char_to_value() argument
34 if (!isxdigit(hex_char)) { in acpi_db_hex_char_to_value()
38 if (hex_char <= 0x39) { in acpi_db_hex_char_to_value()
39 value = (u8)(hex_char - 0x30); in acpi_db_hex_char_to_value()
41 value = (u8)(toupper(hex_char) - 0x37); in acpi_db_hex_char_to_value()
H A Dacutils.h245 u8 acpi_ut_ascii_char_to_hex(int hex_char);
/linux/tools/perf/util/
H A Dcpumap.c722 static char hex_char(unsigned char val)
763 *ptr++ = hex_char(bits); in aggr_cpu_id__empty()
671 static char hex_char(unsigned char val) hex_char() function