Home
last modified time | relevance | path

Searched defs:toUnsignedLong (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/annotations/sdk/nullability/java/lang/
DByte.annotated.java77 public static long toUnsignedLong(byte x) { throw new RuntimeException("Stub!"); } in toUnsignedLong() method in Byte
DInteger.annotated.java104 public static long toUnsignedLong(int x) { throw new RuntimeException("Stub!"); } in toUnsignedLong() method in Integer
/libcore/ojluni/annotations/hiddenapi/java/lang/
DShort.java130 public static long toUnsignedLong(short x) { in toUnsignedLong() method in Short
DByte.java126 public static long toUnsignedLong(byte x) { in toUnsignedLong() method in Byte
DInteger.java189 public static long toUnsignedLong(int x) { in toUnsignedLong() method in Integer
/libcore/ojluni/src/main/java/java/lang/
DShort.java612 public static long toUnsignedLong(short x) { in toUnsignedLong() method in Short
DByte.java579 public static long toUnsignedLong(byte x) { in toUnsignedLong() method in Byte
/libcore/ojluni/src/main/java/jdk/internal/misc/
DUnsafe.java4134 private static long toUnsignedLong(byte n) { return n & 0xffL; } in toUnsignedLong() method in Unsafe
4135 private static long toUnsignedLong(short n) { return n & 0xffffL; } in toUnsignedLong() method in Unsafe
4136 private static long toUnsignedLong(int n) { return n & 0xffffffffL; } in toUnsignedLong() method in Unsafe