Searched refs:hexChar (Results 1 – 1 of 1) sorted by relevance
164 outBuf[i*2] = hexChar((byte) ((b >> 4) & 0x0f)); in storeValues()165 outBuf[i*2+1] = hexChar((byte) (b & 0x0f)); in storeValues()170 static char hexChar(byte b) { in hexChar() method in Main