Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/math/
DBigInteger.java2265 long xBN = 0, yBN = 0, quotBN = 0, remBN = 0; in divideAndRemainder() local
2269 quotBN = NativeBN.BN_new(); in divideAndRemainder()
2271 NativeBN.BN_div(quotBN, remBN, xBN, yBN); in divideAndRemainder()
2272 BigInteger quotient = new BigInteger(quotSign, bn2BigEndInts(quotBN)); in divideAndRemainder()
2280 NativeBN.BN_free(quotBN); in divideAndRemainder()