Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DBitSetTest.java213 private static BitSet small() { in small() method in BitSetTest
221 result.and(small()); in test_differentSizes()
223 result = small(); in test_differentSizes()
228 result.andNot(small()); in test_differentSizes()
230 result = small(); in test_differentSizes()
234 assertFalse(big().intersects(small())); in test_differentSizes()
235 assertFalse(small().intersects(big())); in test_differentSizes()
238 result.or(small()); in test_differentSizes()
240 result = small(); in test_differentSizes()
245 result.xor(small()); in test_differentSizes()
[all …]
/libcore/ojluni/src/main/java/java/lang/
DInteger.java411 boolean small = negative ? i > -100 : i < 100; in toString()
412 if (small) { in toString()
/libcore/
DNativeCode.bp118 // issues have been fixed. Most of these are small changes except for
DJavaLibrary.bp222 // Visibility is deliberately restricted to a small set of build modules that
/libcore/ojluni/src/main/java/java/math/
DBigDecimal.java1389 BigDecimal small; in preAlign() local
1393 small = augend; in preAlign()
1396 small = lhs; in preAlign()
1416 long smallHighDigitPos = (long) small.scale - small.precision() + 1; in preAlign()
1419small = BigDecimal.valueOf(small.signum(), this.checkScale(Math.max(big.scale, estResultUlpScale) … in preAlign()
1424 BigDecimal[] result = {big, small}; in preAlign()