Home
last modified time | relevance | path

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

/libcore/ojluni/src/test/java/math/BigDecimal/
DDivideTests.java78 BigInteger b_prime = divisorIntvalue.divide(dividendIntvalue.gcd(divisorIntvalue)); in anotherDivide() local
84 while(! b_prime.equals(BigInteger.ONE) ) { in anotherDivide()
85 int b_primeModTen = b_prime.mod(TEN).intValue() ; in anotherDivide()
92 b_prime = b_prime.divide(TEN); in anotherDivide()
98 b_prime = b_prime.divide(FIVE); in anotherDivide()
107 b_prime = b_prime.divide(TWO); in anotherDivide()
111 b_prime = BigInteger.ONE; // terminate loop in anotherDivide()