Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/jar/
DJarOutputStream.java138 return Byte.toUnsignedInt(b[off]) | ( Byte.toUnsignedInt(b[off+1]) << 8); in get16()
DManifest.java342 return Byte.toUnsignedInt(buf[pos++]); in read()
/libcore/ojluni/src/main/java/java/util/zip/
DZipUtils.java130 return Byte.toUnsignedInt(b[off]) | (Byte.toUnsignedInt(b[off+1]) << 8); in get16()
DInflaterInputStream.java127 return read(singleByteBuf, 0, 1) == -1 ? -1 : Byte.toUnsignedInt(singleByteBuf[0]); in read()
DZipEntry.java526 int flag = Byte.toUnsignedInt(extra[off]); in setExtra0()
/libcore/luni/src/test/java/libcore/java/lang/
DByteTest.java46 final int ui = Byte.toUnsignedInt(b);
DShortTest.java46 final int ui = Short.toUnsignedInt(b);
/libcore/ojluni/src/main/java/java/lang/
DShort.java512 public static int toUnsignedInt(short x) { in toUnsignedInt() method in Short
DByte.java477 public static int toUnsignedInt(byte x) { in toUnsignedInt() method in Byte