Searched refs:hexChars (Results 1 – 6 of 6) sorted by relevance
41 private static String bytesToHex(byte[] bytes, char[] hexChars) { in bytesToHex() argument45 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()
69 final char[] hexChars = new char[bytes.length * 3]; in bytesToHex() local73 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()
412 final char hexChars[] = in bufferToHex() local424 hex.append(hexChars[h]); in bufferToHex()425 hex.append(hexChars[l]); in bufferToHex()
1786 String hexChars = "0123456789abcdef"; in appendCharToBuf() local1790 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()1796 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
1789 String hexChars = "0123456789abcdef"; in appendCharToBuf() local1793 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()1799 dest.append(hexChars.charAt(((c)>>bn)&0xf)); in appendCharToBuf()
4054 UnicodeString hexChars("0123456789abcdef"); in RunMonkey() local4068 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()4073 errorText.append(hexChars.charAt((c>>bn)&0xf)); in RunMonkey()