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

/libcore/ojluni/src/main/java/java/lang/
H A DMath.java94 * overflow errors need to be detected, the methods {@code addExact},
791 public static int addExact(int x, int y) { method in class:Math
810 public static long addExact(long x, long y) { method in class:Math
H A DStrictMath.java67 * overflow errors need to be detected, the methods {@code addExact},
720 * @see Math#addExact(int,int)
723 public static int addExact(int x, int y) { method in class:StrictMath
724 return Math.addExact(x, y);
735 * @see Math#addExact(long,long)
738 public static long addExact(long x, long y) { method in class:StrictMath
739 return Math.addExact(x, y);

Completed in 247 milliseconds