Searched refs:hexToInt (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/inspector/
H A DInspectorValues.cpp247 inline int hexToInt(UChar c) function in namespace:WebCore::__anon14619
292 c = (hexToInt(*start) << 4) +
293 hexToInt(*(start + 1));
297 c = (hexToInt(*start) << 12) +
298 (hexToInt(*(start + 1)) << 8) +
299 (hexToInt(*(start + 2)) << 4) +
300 hexToInt(*(start + 3));
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
H A DPEMDecoder.java33 private static int hexToInt(char c) method in class:PEMDecoder
65 int hi = hexToInt(hex.charAt(i * 2));
66 int lo = hexToInt(hex.charAt((i * 2) + 1));

Completed in 86 milliseconds