Searched refs:floorMod (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/libcore/java/lang/ |
D | StrictMathTest.java | 173 int floorMod = StrictMath.floorMod(a, b); in testFloorModI() local 178 assertEquals(expected, floorMod); in testFloorModI() 219 long floorMod = StrictMath.floorMod(a, b); in testFloorModL() local 224 assertEquals(expected, floorMod); in testFloorModL()
|
D | MathTest.java | 245 int floorMod = Math.floorMod(a, b); in testFloorModI() local 250 assertEquals(expected, floorMod); in testFloorModI() 291 long floorMod = Math.floorMod(a, b); in testFloorModL() local 296 assertEquals(expected, floorMod); in testFloorModL()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 873 public static int floorMod(int x, int y) { in floorMod() method in StrictMath 874 return Math.floorMod(x , y); in floorMod() 899 public static long floorMod(long x, long y) { in floorMod() method in StrictMath 900 return Math.floorMod(x, y); in floorMod()
|
D | Math.java | 1101 public static int floorMod(int x, int y) { in floorMod() method in Math 1128 public static long floorMod(long x, long y) { in floorMod() method in Math
|