Searched refs:nibble2hex (Results 1 – 3 of 3) sorted by relevance
/hardware/interfaces/confirmationui/support/test/ |
D | msg_formatting_test.cpp | 41 char nibble2hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', variable 47 out << (nibble2hex[0x0F & (byte >> 4)]); in hexdump() 48 out << (nibble2hex[0x0F & byte]); in hexdump()
|
/hardware/interfaces/keymaster/3.0/vts/functional/ |
D | keymaster_hidl_hal_test.cpp | 233 char nibble2hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', variable 240 retval.push_back(nibble2hex[0x0F & (byte >> 4)]); in bin2hex() 241 retval.push_back(nibble2hex[0x0F & byte]); in bin2hex()
|
/hardware/interfaces/keymaster/4.0/vts/functional/ |
D | keymaster_hidl_hal_test.cpp | 120 char nibble2hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', variable 127 retval.push_back(nibble2hex[0x0F & (byte >> 4)]); in bin2hex() 128 retval.push_back(nibble2hex[0x0F & byte]); in bin2hex()
|