Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/lang/Math/
DDivModTests.java129 Object strict_result = doStrictFloorDiv(x, y); in testIntFloorDiv() local
131 … fail("FAIL: StrictMath.floorDiv(%d, %d) = %s; expected %s%n", x, y, strict_result, expected); in testIntFloorDiv()
144 Object strict_result = doStrictFloorMod(x, y); in testIntFloorMod() local
145 if (!resultEquals(strict_result, expected)) { in testIntFloorMod()
146 … fail("FAIL: StrictMath.floorMod(%d, %d) = %s; expected %s%n", x, y, strict_result, expected); in testIntFloorMod()
229 Object strict_result = doStrictFloorDiv(x, y); in testLongFloorDiv() local
230 if (!resultEquals(strict_result, expected)) { in testLongFloorDiv()
231 … fail("FAIL: long StrictMath.floorDiv(%d, %d) = %s; expected %s%n", x, y, strict_result, expected); in testLongFloorDiv()
250 Object strict_result = doStrictFloorMod(x, y); in testLongFloorMod() local
251 if (!resultEquals(strict_result, expected)) { in testLongFloorMod()
[all …]