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 %() 209 divideWithRemainder(x, q); in operator /=() 218 divideWithRemainder(x, q); in operator %=()
|
D | BigUnsigned.hh | 201 void divideWithRemainder(const BigUnsigned &b, BigUnsigned &q); 273 r.divideWithRemainder(x, q); in operator /() 281 r.divideWithRemainder(x, q); in operator %() 325 divideWithRemainder(x, q); in operator /=() 334 divideWithRemainder(x, q); in operator %=()
|
D | BigInteger.cc | 284 void BigInteger::divideWithRemainder(const BigInteger &b, BigInteger &q) { in divideWithRemainder() function in BigInteger 291 divideWithRemainder(tmpB, q); in divideWithRemainder() 342 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()
|