OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hex_table
(Results
1 - 2
of
2
) sorted by null
/device/moto/shamu/bdAddrLoader/
addrloader.c
74
char
hex_table
[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
local
78
ascii[j] =
hex_table
[hexa[i] >> 4];
79
ascii[j + 1] =
hex_table
[hexa[i] & 0x0F];
/system/bt/btif/src/
btif_sock_util.c
150
static const char*
hex_table
= "0123456789abcdef";
variable
153
**str =
hex_table
[(*data >> 4) & 0xf];
155
**str =
hex_table
[*data & 0xf];
Completed in 346 milliseconds