Searched refs:small (Results 1 – 9 of 9) sorted by relevance
228 private static BitSet small() { in small() method in BitSetTest236 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 …]
1028 FDBigInteger small; in addAndCmp() local1035 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() local1189 small = other; in add()1194 small = this; in add()1202 + ((i < small.offset ? 0L : (small.data[i - small.offset] & LONG_MASK))); in add()
16 // Definitions to expose small parts of the core library that are
121 // issues have been fixed. Most of these are small changes except for
264 // Visibility is deliberately restricted to a small set of build modules that
509 boolean small = negative ? i > -100 : i < 100; in toString()510 if (small) { in toString()
263 for (long small : smalls) { in squareRootSmall()264 checkResult(BigInteger.ONE, BigInteger.valueOf(small).sqrt(), "sqrt("+small+") != 1"); in squareRootSmall()
1487 BigDecimal small; in preAlign() local1491 small = augend; in preAlign()1494 small = lhs; in preAlign()1514 long smallHighDigitPos = (long) small.scale - small.precision() + 1; in preAlign()1517 …small = BigDecimal.valueOf(small.signum(), this.checkScale(Math.max(big.scale, estResultUlpScale) … in preAlign()1522 BigDecimal[] result = {big, small}; in preAlign()
281 // values, which is especially costly when coding small buffers.