Lines Matching defs:actual

54     private static void check(String msg, BigInteger actual, BigInteger expected) {  in check()
60 private static void check(String msg, double actual, double expected) { in check()
66 private static void check(String msg, float actual, float expected) { in check()
72 private static void check(String msg, long actual, long expected) { in check()
78 private static void check(String msg, int actual, int expected) { in check()
89 BigInteger actual = new BigInteger(ba); in testOverflowInMakePositive() local
107 BigInteger actual = new BigInteger(s, 16); in testBug8021204() local
119 BigInteger actual = new BigInteger(bitLength, 0, rnd); in testOverflowInBitSieve() local
126 BigInteger actual = bi.nextProbablePrime(); in testOverflowInBitSieve() local
136 BigInteger actual = MAX_VALUE.add(BigInteger.ONE); in testAdd() local
146 BigInteger actual = MIN_VALUE.subtract(BigInteger.ONE); in testSubtract() local
160 BigInteger actual = x.multiply(y); in testMultiply() local
213 BigInteger actual = BigInteger.valueOf(4).pow(Integer.MAX_VALUE); in testPow() local
272 BigInteger actual = MIN_VALUE.shiftLeft(1); in testShiftLeft() local
278 BigInteger actual = MAX_VALUE.shiftLeft(1); in testShiftLeft() local
288 BigInteger actual = MIN_VALUE.shiftRight(-1); in testShiftRight() local
294 BigInteger actual = MAX_VALUE.shiftRight(-1); in testShiftRight() local
310 BigInteger actual = MIN_VALUE.and(BigInteger.valueOf(-2)); in testAnd() local
336 BigInteger actual = MIN_VALUE.xor(BigInteger.ONE); in testXor() local
348 BigInteger actual = MAX_VALUE.not(); in testNot() local
360 BigInteger actual = MAX_VALUE.setBit(Integer.MAX_VALUE); in testSetBit() local
372 BigInteger actual = MIN_VALUE.clearBit(Integer.MAX_VALUE); in testClearBit() local
378 BigInteger actual = MIN_VALUE.clearBit(0); in testClearBit() local
388 BigInteger actual = MIN_VALUE.flipBit(Integer.MAX_VALUE); in testFlipBit() local
394 BigInteger actual = MIN_VALUE.flipBit(0); in testFlipBit() local
400 BigInteger actual = MAX_VALUE.flipBit(Integer.MAX_VALUE); in testFlipBit() local
469 BigInteger actual = new BigInteger(ba); in testToByteArrayWithConstructor() local
485 BigInteger actual = new BigInteger(-1, ba); in testToByteArrayWithConstructor() local
491 BigInteger actual = new BigInteger(1, ba); in testToByteArrayWithConstructor() local
540 BigInteger actual = (BigInteger) in.readObject(); in testSerialization() local
560 long actual = MIN_VALUE.longValueExact(); in testLongValueExact() local
566 long actual = MAX_VALUE.longValueExact(); in testLongValueExact() local
576 long actual = MIN_VALUE.intValueExact(); in testIntValueExact() local
582 long actual = MAX_VALUE.intValueExact(); in testIntValueExact() local
592 long actual = MIN_VALUE.shortValueExact(); in testShortValueExact() local
598 long actual = MAX_VALUE.shortValueExact(); in testShortValueExact() local
608 long actual = MIN_VALUE.byteValueExact(); in testByteValueExact() local
614 long actual = MAX_VALUE.byteValueExact(); in testByteValueExact() local