Home
last modified time | relevance | path

Searched refs:floorDivExact (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java1051 public static int floorDivExact(int x, int y) { in floorDivExact() method in StrictMath
1052 return Math.floorDivExact(x, y); in floorDivExact()
1081 public static long floorDivExact(long x, long y) { in floorDivExact() method in StrictMath
1082 return Math.floorDivExact(x, y); in floorDivExact()
DMath.java1271 public static int floorDivExact(int x, int y) { in floorDivExact() method in Math
1308 public static long floorDivExact(long x, long y) { in floorDivExact() method in Math
/libcore/ojluni/annotations/flagged_api/java/lang/
DMath.annotated.java100 public static int floorDivExact(int x, int y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in Math
103 public static long floorDivExact(long x, long y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in Math
DStrictMath.annotated.java99 public static int floorDivExact(int x, int y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in StrictMath
102 public static long floorDivExact(long x, long y) { throw new RuntimeException("Stub!"); } in floorDivExact() method in StrictMath
/libcore/ojluni/src/test/java/lang/Math/
DExactArithTests.java196 int z = Math.floorDivExact(x, y); in testIntegerExact()
206 z = StrictMath.floorDivExact(x, y); in testIntegerExact()
429 long z = Math.floorDivExact(x, y); in testLongExact()
439 z = StrictMath.floorDivExact(x, y); in testLongExact()
/libcore/api/
Dcurrent.txt3731 method public static int floorDivExact(int, int);
3732 method public static long floorDivExact(long, long);
4173 method public static int floorDivExact(int, int);
4174 method public static long floorDivExact(long, long);