Home
last modified time | relevance | path

Searched refs:floorMod (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DStrictMathTest.java173 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()
DMathTest.java245 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/
DStrictMath.java873 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()
DMath.java1101 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