Searched refs:divideWithRemainder (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/third_party/bigint/ |
D | BigInteger.hh | 119 void divideWithRemainder(const BigInteger &b, BigInteger &q); 170 r.divideWithRemainder(x, q); in operator /() 178 r.divideWithRemainder(x, q); in operator %() 212 divideWithRemainder(x, q); in operator /=() 222 divideWithRemainder(x, q); in operator %=()
|
D | BigUnsigned.hh | 202 void divideWithRemainder(const BigUnsigned &b, BigUnsigned &q); 274 r.divideWithRemainder(x, q); in operator /() 282 r.divideWithRemainder(x, q); in operator %() 329 divideWithRemainder(x, q); in operator /=() 339 divideWithRemainder(x, q); in operator %=()
|
D | BigInteger.cc | 285 void BigInteger::divideWithRemainder(const BigInteger &b, BigInteger &q) { in divideWithRemainder() function in BigInteger 292 divideWithRemainder(tmpB, q); in divideWithRemainder() 343 mag.divideWithRemainder(b.mag, q.mag); in divideWithRemainder()
|
D | BigUnsignedInABase.cc | 57 lastDigit.divideWithRemainder(buBase, x2); in BigUnsignedInABase()
|
D | BigUnsigned.cc | 387 void BigUnsigned::divideWithRemainder(const BigUnsigned &b, BigUnsigned &q) { in divideWithRemainder() function in BigUnsigned 399 divideWithRemainder(tmpB, q); in divideWithRemainder()
|