Searched refs:hexCharToInt (Results 1 – 1 of 1) 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