Home
last modified time | relevance | path

Searched refs:ceil (Results 1 – 17 of 17) sorted by relevance

/libcore/luni/src/test/resources/
Dmath_important_numbers.csv625 ceil,0x1.8p1,0x1.5bf0a8b145769p1,2.718281828459045
626 ceil,-0x1.0p1,-0x1.5bf0a8b145769p1,-2.718281828459045
627 ceil,0x0.0p0,0x0.0p0,0.0
628 ceil,-0x0.0p0,-0x0.0p0,-0.0
629 ceil,0x1.0p0,0x1.0p0,1.0
630 ceil,-0x1.0p0,-0x1.0p0,-1.0
631 ceil,-0x0.0p0,-0x1.0p-1,-0.5
632 ceil,0x1.0p0,0x1.0p-1,0.5
633 ceil,0x0.0p2047,0x0.0p2047,infty
634 ceil,-0x0.0p2047,-0x0.0p2047,-infty
[all …]
Dmath_java_only.csv1733 ceil,0x1.0p1,0x1.1529c4488417ep0
1734 ceil,0x1.0p1,0x1.8fa0a5e8cee32p0
1735 ceil,-0x0.0p0,-0x1.8819e79d62b8p-1
1736 ceil,-0x1.0p3,-0x1.1824560a8c094p3
1737 ceil,0x1.0p0,0x1.c7993d0a6bab1p-5
1738 ceil,0x1.0p0,0x1.d3f48401ae71dp-2
1739 ceil,-0x0.0p0,-0x1.fe333a8929a13p-4
1740 ceil,-0x1.0p0,-0x1.d3f9245636b8cp0
1741 ceil,-0x1.0p0,-0x1.38b161487c697p0
1742 ceil,-0x1.8p1,-0x1.c652252a89289p1
[all …]
/libcore/luni/src/test/java/libcore/libcore/util/
DFP16Test.java154 assertEquals(POSITIVE_INFINITY, FP16.ceil(POSITIVE_INFINITY)); in testCeil()
155 assertEquals(NEGATIVE_INFINITY, FP16.ceil(NEGATIVE_INFINITY)); in testCeil()
156 assertEquals(POSITIVE_ZERO, FP16.ceil(POSITIVE_ZERO)); in testCeil()
157 assertEquals(NEGATIVE_ZERO, FP16.ceil(NEGATIVE_ZERO)); in testCeil()
158 assertEquals(NaN, FP16.ceil(NaN)); in testCeil()
159 assertEquals(LOWEST_VALUE, FP16.ceil(LOWEST_VALUE)); in testCeil()
160 assertEquals(1.0f, toFloat(FP16.ceil(MIN_NORMAL)), 0.0f); in testCeil()
161 assertEquals(1.0f, toFloat(FP16.ceil((short) 0x3ff)), 0.0f); in testCeil()
162 assertEquals(1.0f, toFloat(FP16.ceil(toHalf(0.2f))), 0.0f); in testCeil()
163 assertEquals(NEGATIVE_ZERO, FP16.ceil(toHalf(-0.2f))); in testCeil()
[all …]
/libcore/ojluni/src/main/native/
DMath.c136 return ceil(d); in Math_ceil()
152 FAST_NATIVE_METHOD(Math, ceil, "(D)D"),
Djfdlibm.h52 #define ceil jceil macro
Dfdlibm.h139 extern double ceil __P((double));
/libcore/ojluni/annotations/mmodule/java/lang/
DMath.annotated.java65 public static native double ceil(double a); in ceil() method in Math
/libcore/ojluni/src/main/java/java/lang/
DStrictMath.java339 public static double ceil(double a) { in ceil() method in StrictMath
DMath.java416 public static native double ceil(double a); in ceil() method in Math
/libcore/benchmarks/src/benchmarks/regression/
DStrictMathBenchmark.java116 StrictMath.ceil(CEIL_DOUBLES[i]); in timeCeilOverInterestingValues()
DMathBenchmark.java109 result = Math.ceil(d); in timeCeil()
/libcore/luni/src/test/java/libcore/java/lang/
DOldAndroidStrictMathTest.java135 79, StrictMath.ceil(78.89), 0.0); in testCeilD()
137 -78, StrictMath.ceil(-78.89), 0.0); in testCeilD()
DOldAndroidMathTest.java188 79, Math.ceil(78.89), 0); in testCeilD()
190 -78, Math.ceil(-78.89), 0); in testCeilD()
/libcore/luni/src/main/java/libcore/util/
DFP16.java281 public static short ceil(short h) { in ceil() method in FP16
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DStrictMathTest.java173 79, StrictMath.ceil(78.89), 0.0); in test_ceilD()
175 -78, StrictMath.ceil(-78.89), 0.0); in test_ceilD()
DMathTest.java147 79, Math.ceil(78.89), 0); in test_ceilD()
149 -78, Math.ceil(-78.89), 0); in test_ceilD()
/libcore/mmodules/core_platform_api/api/legacy_platform/
Dcurrent-api.txt1039 method public static short ceil(short);