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