Home
last modified time | relevance | path

Searched refs:hex_table (Results 1 – 4 of 4) sorted by relevance

/external/bluetooth/bluedroid/btif/src/
Dbtif_sock_util.c167 static const char* hex_table = "0123456789abcdef"; variable
170 **str = hex_table[(*data >> 4) & 0xf]; in byte2hex()
172 **str = hex_table[*data & 0xf]; in byte2hex()
Dbtif_config_util.cpp117 static const char* hex_table = "0123456789abcdef"; in bytes2hex() local
120 *str = hex_table[(data[i] >> 4) & 0xf]; in bytes2hex()
122 *str = hex_table[data[i] & 0xf]; in bytes2hex()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
Dtr_dump.c442 static const char hex_table[16] = "0123456789ABCDEF"; in trace_dump_bytes() local
453 hex[0] = hex_table[byte >> 4]; in trace_dump_bytes()
454 hex[1] = hex_table[byte & 0xf]; in trace_dump_bytes()
/external/mesa3d/src/gallium/drivers/trace/
Dtr_dump.c442 static const char hex_table[16] = "0123456789ABCDEF"; in trace_dump_bytes() local
453 hex[0] = hex_table[byte >> 4]; in trace_dump_bytes()
454 hex[1] = hex_table[byte & 0xf]; in trace_dump_bytes()