Searched refs:hex_digits (Results 1 – 1 of 1) sorted by relevance
415 const char hex_digits[17] = "0123456789abcdef"; in avb_bin2hex() local425 hex_data[n * 2] = hex_digits[data[n] >> 4]; in avb_bin2hex()426 hex_data[n * 2 + 1] = hex_digits[data[n] & 0x0f]; in avb_bin2hex()