Home
last modified time | relevance | path

Searched refs:testCubeRootCase (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/test/java/lang/Math/
DCubeRootTests.java52 static void testCubeRootCase(double input, double expected) { in testCubeRootCase() method in CubeRootTests
91 testCubeRootCase(testCase[0], testCase[1]); in testCubeRoot()
99 testCubeRootCase(d * d * d, (double) i); in testCubeRoot()
104 testCubeRootCase(Math.scalb(1.0, 3 * i), Math.scalb(1.0, i)); in testCubeRoot()
109 testCubeRootCase(Math.scalb(1.0, 3 * i), Math.scalb(1.0, i)); in testCubeRoot()
130 testCubeRootCase(input1 * input1 * input1, input1); in testCubeRoot()
137 testCubeRootCase(input2 * input2 * input2, input2); in testCubeRoot()
/libcore/ojluni/src/test/java/lang/StrictMath/
DCubeRootTests.java57 static void testCubeRootCase(double input, double expected) { in testCubeRootCase() method in CubeRootTests
466 testCubeRootCase(testCase[0], testCase[1]); in testCubeRoot()
503 testCubeRootCase(x, FdlibmTranslit.Cbrt.compute(x)); in testRange()