Searched refs:hex_table (Results 1 – 2 of 2) sorted by relevance
167 static const char* hex_table = "0123456789abcdef"; variable170 **str = hex_table[(*data >> 4) & 0xf]; in byte2hex()172 **str = hex_table[*data & 0xf]; in byte2hex()
82 static const char* hex_table = "0123456789abcdef"; in bytes2hex() local85 *str = hex_table[(data[i] >> 4) & 0xf]; in bytes2hex()87 *str = hex_table[data[i] & 0xf]; in bytes2hex()