Searched refs:hexCharToInt (Results 1 – 3 of 3) sorted by relevance
233 ret[i / 2] = (byte) ((hexCharToInt(s.charAt(i)) << 4) | hexCharToInt(s.charAt(i + 1))); in hexStringToBytes()251 private static int hexCharToInt(char c) { in hexCharToInt() method in CellBroadcastServiceTestBase
428 hexCharToInt(char c) { in hexCharToInt() method in IccUtils458 ret[i/2] = (byte) ((hexCharToInt(s.charAt(i)) << 4) in hexStringToBytes()459 | hexCharToInt(s.charAt(i+1))); in hexStringToBytes()
6793 uint8_t hexCharToInt(uint8_t c) { in hexCharToInt() function6814 uint8_t hexChar1 = hexCharToInt(hexString[i]); in convertHexStringToBytes()6815 uint8_t hexChar2 = hexCharToInt(hexString[i + 1]); in convertHexStringToBytes()