Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/math/
DBigDecimalTest.java316 checkCommonOperations(0); in testCommonOperations_halfOfEvenLongValue()
317 checkCommonOperations(2); in testCommonOperations_halfOfEvenLongValue()
318 checkCommonOperations(-2); in testCommonOperations_halfOfEvenLongValue()
319 checkCommonOperations(Long.MIN_VALUE); in testCommonOperations_halfOfEvenLongValue()
320 checkCommonOperations(1L << 62L); in testCommonOperations_halfOfEvenLongValue()
321 checkCommonOperations(-(1L << 62L)); in testCommonOperations_halfOfEvenLongValue()
322 checkCommonOperations(1L << 62L + 1 << 30 + 1 << 10); in testCommonOperations_halfOfEvenLongValue()
323 checkCommonOperations(Long.MAX_VALUE - 1); in testCommonOperations_halfOfEvenLongValue()
326 private static void checkCommonOperations(long value) { in checkCommonOperations() method in BigDecimalTest