Searched refs:tempBI (Results 1 – 1 of 1) sorted by relevance
788 BigInteger tempBI; in add() local813 tempBI = Multiplication.multiplyByPositiveInt(larger.getUnscaledValue(),10) in add()816 tempBI = larger.getUnscaledValue().subtract( in add()818 tempBI = Multiplication.multiplyByPositiveInt(tempBI,10) in add()822 larger = new BigDecimal(tempBI, larger.scale + 1); in add()893 BigInteger tempBI; in subtract() local905 tempBI = Multiplication.multiplyByPositiveInt(this.getUnscaledValue(), 10) in subtract()908 tempBI = this.getUnscaledValue().subtract(BigInteger.valueOf(thisSignum)); in subtract()909 tempBI = Multiplication.multiplyByPositiveInt(tempBI, 10) in subtract()913 leftOperand = new BigDecimal(tempBI, this.scale + 1); in subtract()