Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/
DBitSetTest.java228 private static BitSet small() { in small() method in BitSetTest
236 result.and(small()); in test_differentSizes()
238 result = small(); in test_differentSizes()
243 result.andNot(small()); in test_differentSizes()
245 result = small(); in test_differentSizes()
249 assertFalse(big().intersects(small())); in test_differentSizes()
250 assertFalse(small().intersects(big())); in test_differentSizes()
253 result.or(small()); in test_differentSizes()
255 result = small(); in test_differentSizes()
260 result.xor(small()); in test_differentSizes()
[all …]
/libcore/ojluni/src/main/java/jdk/internal/math/
DFDBigInteger.java1028 FDBigInteger small; in addAndCmp() local
1035 small = y; in addAndCmp()
1040 small = x; in addAndCmp()
1059 top += (small.data[small.nWords - 1] & LONG_MASK); in addAndCmp()
1090 return this.cmp(big.add(small)); in addAndCmp()
1182 FDBigInteger big, small; in add() local
1189 small = other; in add()
1194 small = this; in add()
1202 + ((i < small.offset ? 0L : (small.data[i - small.offset] & LONG_MASK))); in add()
/libcore/
DExtras.bp16 // Definitions to expose small parts of the core library that are
DNativeCode.bp121 // issues have been fixed. Most of these are small changes except for
DJavaLibrary.bp264 // Visibility is deliberately restricted to a small set of build modules that
/libcore/ojluni/src/main/java/java/lang/
DInteger.java509 boolean small = negative ? i > -100 : i < 100; in toString()
510 if (small) { in toString()
/libcore/ojluni/src/test/java/math/BigInteger/
DBigIntegerTest.java263 for (long small : smalls) { in squareRootSmall()
264 checkResult(BigInteger.ONE, BigInteger.valueOf(small).sqrt(), "sqrt("+small+") != 1"); in squareRootSmall()
/libcore/ojluni/src/main/java/java/math/
DBigDecimal.java1487 BigDecimal small; in preAlign() local
1491 small = augend; in preAlign()
1494 small = lhs; in preAlign()
1514 long smallHighDigitPos = (long) small.scale - small.precision() + 1; in preAlign()
1517small = BigDecimal.valueOf(small.signum(), this.checkScale(Math.max(big.scale, estResultUlpScale) … in preAlign()
1522 BigDecimal[] result = {big, small}; in preAlign()
/libcore/ojluni/src/main/java/java/nio/
DX-Buffer.java.template281 // values, which is especially costly when coding small buffers.