Home
last modified time | relevance | path

Searched defs:toUnsignedInt (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/annotations/sdk/nullability/java/lang/
DByte.annotated.java75 public static int toUnsignedInt(byte x) { throw new RuntimeException("Stub!"); } in toUnsignedInt() method in Byte
/libcore/ojluni/annotations/hiddenapi/java/lang/
DShort.java126 public static int toUnsignedInt(short x) { in toUnsignedInt() method in Short
DByte.java122 public static int toUnsignedInt(byte x) { in toUnsignedInt() method in Byte
/libcore/ojluni/src/main/java/java/lang/
DShort.java592 public static int toUnsignedInt(short x) { in toUnsignedInt() method in Short
DByte.java559 public static int toUnsignedInt(byte x) { in toUnsignedInt() method in Byte
/libcore/ojluni/src/main/java/jdk/internal/misc/
DUnsafe.java4132 private static int toUnsignedInt(byte n) { return n & 0xff; } in toUnsignedInt() method in Unsafe
4133 private static int toUnsignedInt(short n) { return n & 0xffff; } in toUnsignedInt() method in Unsafe