Home
last modified time | relevance | path

Searched refs:hexChars (Results 1 – 6 of 6) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/util/
DUtil.java41 private static String bytesToHex(byte[] bytes, char[] hexChars) { in bytesToHex() argument
45 hexChars[j * 2] = HEX_CHAR_ARRAY[v >>> 4]; in bytesToHex()
46 hexChars[j * 2 + 1] = HEX_CHAR_ARRAY[v & 0x0F]; in bytesToHex()
48 return new String(hexChars); in bytesToHex()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DJDKGenericDumpTestCase.java69 final char[] hexChars = new char[bytes.length * 3]; in bytesToHex() local
73 hexChars[i++] = hexArray[v >>> 4]; in bytesToHex()
74 hexChars[i++] = hexArray[v & 0x0F]; in bytesToHex()
75 hexChars[i++] = ' '; in bytesToHex()
77 return new String(hexChars); in bytesToHex()
/external/apache-http/android/src/android/net/http/
DRequestHandle.java412 final char hexChars[] = in bufferToHex() local
424 hex.append(hexChars[h]); in bufferToHex()
425 hex.append(hexChars[l]); in bufferToHex()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java1786 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1790 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1796 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java1789 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1793 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1799 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp4054 UnicodeString hexChars("0123456789abcdef"); in RunMonkey() local
4068 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()
4073 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()