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

/libcore/ojluni/src/main/java/java/lang/
H A DMath.java95 * {@code subtractExact}, {@code multiplyExact}, and {@code toIntExact}
876 public static int multiplyExact(int x, int y) { method in class:Math
894 public static long multiplyExact(long x, long y) { method in class:Math
H A DStrictMath.java68 * {@code subtractExact}, {@code multiplyExact}, and {@code toIntExact}
780 * @see Math#multiplyExact(int,int)
783 public static int multiplyExact(int x, int y) { method in class:StrictMath
784 return Math.multiplyExact(x, y);
795 * @see Math#multiplyExact(long,long)
798 public static long multiplyExact(long x, long y) { method in class:StrictMath
799 return Math.multiplyExact(x, y);

Completed in 36 milliseconds