Searched defs:b0 (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/
H A DBits.java65 static private char makeChar(byte b1, byte b0) { argument
66 return (char) ((b1 << 8) | (b0 & 0xff));
142 static private short makeShort(byte b1, byte b0) { argument
143 return (short) ((b1 << 8) | (b0 & 0xff));
219 static private int makeInt(byte b3, byte b2, byte b1, byte b0) { argument
223 ((b0 & 0xff)));
324 byte b3, byte b2, byte b1, byte b0) {
332 (((long) b0 & 0xff)));
323 makeLong(byte b7, byte b6, byte b5, byte b4, byte b3, byte b2, byte b1, byte b0) argument

Completed in 116 milliseconds