Home
last modified time | relevance | path

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

/art/test/070-nio-buffer/src/
DMain.java164 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