Lines Matching defs:actual

56     private static void check(String msg, BigInteger actual, BigInteger expected) {  in check()
62 private static void check(String msg, double actual, double expected) { in check()
68 private static void check(String msg, float actual, float expected) { in check()
74 private static void check(String msg, long actual, long expected) { in check()
80 private static void check(String msg, int actual, int expected) { in check()
91 BigInteger actual = new BigInteger(ba); in testOverflowInMakePositive() local
109 BigInteger actual = new BigInteger(s, 16); in testBug8021204() local
121 BigInteger actual = new BigInteger(bitLength, 0, random); in testOverflowInBitSieve() local
128 BigInteger actual = bi.nextProbablePrime(); in testOverflowInBitSieve() local
138 BigInteger actual = MAX_VALUE.add(BigInteger.ONE); in testAdd() local
148 BigInteger actual = MIN_VALUE.subtract(BigInteger.ONE); in testSubtract() local
162 BigInteger actual = x.multiply(y); in testMultiply() local
215 BigInteger actual = BigInteger.valueOf(4).pow(Integer.MAX_VALUE); in testPow() local
274 BigInteger actual = MIN_VALUE.shiftLeft(1); in testShiftLeft() local
280 BigInteger actual = MAX_VALUE.shiftLeft(1); in testShiftLeft() local
290 BigInteger actual = MIN_VALUE.shiftRight(-1); in testShiftRight() local
296 BigInteger actual = MAX_VALUE.shiftRight(-1); in testShiftRight() local
312 BigInteger actual = MIN_VALUE.and(BigInteger.valueOf(-2)); in testAnd() local
338 BigInteger actual = MIN_VALUE.xor(BigInteger.ONE); in testXor() local
350 BigInteger actual = MAX_VALUE.not(); in testNot() local
362 BigInteger actual = MAX_VALUE.setBit(Integer.MAX_VALUE); in testSetBit() local
374 BigInteger actual = MIN_VALUE.clearBit(Integer.MAX_VALUE); in testClearBit() local
380 BigInteger actual = MIN_VALUE.clearBit(0); in testClearBit() local
390 BigInteger actual = MIN_VALUE.flipBit(Integer.MAX_VALUE); in testFlipBit() local
396 BigInteger actual = MIN_VALUE.flipBit(0); in testFlipBit() local
402 BigInteger actual = MAX_VALUE.flipBit(Integer.MAX_VALUE); in testFlipBit() local
471 BigInteger actual = new BigInteger(ba); in testToByteArrayWithConstructor() local
487 BigInteger actual = new BigInteger(-1, ba); in testToByteArrayWithConstructor() local
493 BigInteger actual = new BigInteger(1, ba); in testToByteArrayWithConstructor() local
542 BigInteger actual = (BigInteger) in.readObject(); in testSerialization() local
562 long actual = MIN_VALUE.longValueExact(); in testLongValueExact() local
568 long actual = MAX_VALUE.longValueExact(); in testLongValueExact() local
578 long actual = MIN_VALUE.intValueExact(); in testIntValueExact() local
584 long actual = MAX_VALUE.intValueExact(); in testIntValueExact() local
594 long actual = MIN_VALUE.shortValueExact(); in testShortValueExact() local
600 long actual = MAX_VALUE.shortValueExact(); in testShortValueExact() local
610 long actual = MIN_VALUE.byteValueExact(); in testByteValueExact() local
616 long actual = MAX_VALUE.byteValueExact(); in testByteValueExact() local