Searched refs:ceilDiv (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 1452 public static int ceilDiv(int x, int y) { in ceilDiv() method in StrictMath 1453 return Math.ceilDiv(x, y); in ceilDiv() 1476 public static long ceilDiv(long x, int y) { in ceilDiv() method in StrictMath 1477 return Math.ceilDiv(x, y); in ceilDiv() 1500 public static long ceilDiv(long x, long y) { in ceilDiv() method in StrictMath 1501 return Math.ceilDiv(x, y); in ceilDiv()
|
D | Math.java | 1833 public static int ceilDiv(int x, int y) { in ceilDiv() method in Math 1867 public static long ceilDiv(long x, int y) { in ceilDiv() method in Math 1868 return ceilDiv(x, (long)y); in ceilDiv() 1896 public static long ceilDiv(long x, long y) { in ceilDiv() method in Math
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | StrictMath.annotated.java | 144 public static int ceilDiv(int x, int y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in StrictMath 147 public static long ceilDiv(long x, int y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in StrictMath 150 public static long ceilDiv(long x, long y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in StrictMath
|
D | Math.annotated.java | 145 public static int ceilDiv(int x, int y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in Math 148 public static long ceilDiv(long x, int y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in Math 151 public static long ceilDiv(long x, long y) { throw new RuntimeException("Stub!"); } in ceilDiv() method in Math
|
/libcore/ojluni/src/test/java/lang/Math/ |
D | DivModTests.java | 870 return Math.ceilDiv(x, y); in doCeilDiv() 884 return Math.ceilDiv(x, y); in doCeilDiv() 898 return Math.ceilDiv(x, y); in doCeilDiv() 954 return StrictMath.ceilDiv(x, y); in doStrictCeilDiv() 968 return StrictMath.ceilDiv(x, y); in doStrictCeilDiv() 982 return StrictMath.ceilDiv(x, y); in doStrictCeilDiv()
|
D | ExactArithTests.java | 223 q = Math.ceilDiv(x, y); in testIntegerExact() 456 q = Math.ceilDiv(x, y); in testLongExact()
|
/libcore/api/ |
D | current.txt | 3571 method @FlaggedApi("com.android.libcore.v_apis") public static int ceilDiv(int, int); 3572 method @FlaggedApi("com.android.libcore.v_apis") public static long ceilDiv(long, int); 3573 method @FlaggedApi("com.android.libcore.v_apis") public static long ceilDiv(long, long); 4013 method @FlaggedApi("com.android.libcore.v_apis") public static int ceilDiv(int, int); 4014 method @FlaggedApi("com.android.libcore.v_apis") public static long ceilDiv(long, int); 4015 method @FlaggedApi("com.android.libcore.v_apis") public static long ceilDiv(long, long);
|