Searched refs:unsignedByte (Results 1 – 1 of 1) sorted by relevance
213 int unsignedByte = b & 0xFF; in toHex() local215 .append(HEX_CHARS.charAt(unsignedByte / 16)) in toHex()216 .append(HEX_CHARS.charAt(unsignedByte % 16)); in toHex()