Searched refs:outBuf (Results 1 – 1 of 1) sorted by relevance
161 char[] outBuf = new char[directBuf.limit() * 2]; in storeValues() local164 outBuf[i*2] = hexChar((byte) ((b >> 4) & 0x0f)); in storeValues()165 outBuf[i*2+1] = hexChar((byte) (b & 0x0f)); in storeValues()167 System.out.println(new String(outBuf)); in storeValues()