Home
last modified time | relevance | path

Searched refs:hexChars (Results 1 – 5 of 5) 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.java1848 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1852 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1858 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java1851 String hexChars = "0123456789abcdef"; in appendCharToBuf() local
1855 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1861 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()