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

/libcore/libart/src/main/java/java/lang/
H A DStringFactory.java86 byte b0 = d[idx++];
87 if ((b0 & 0x80) == 0) {
90 int val = b0 & 0xff;
92 } else if (((b0 & 0xe0) == 0xc0) || ((b0 & 0xf0) == 0xe0) ||
93 ((b0 & 0xf8) == 0xf0) || ((b0 & 0xfc) == 0xf8) || ((b0 & 0xfe) == 0xfc)) {
95 if ((b0 & 0xf0) == 0xe0) utfCount = 2;
96 else if ((b0
[all...]
/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 61 milliseconds