HomeSort by relevance Sort by last modified time
    Searched defs:divideWithRemainder (Results 1 - 2 of 2) sorted by null

  /external/pdfium/third_party/bigint/
BigInteger.cc 265 * `BigUnsigned::divideWithRemainder' in `BigUnsigned.cc' for lots of
284 void BigInteger::divideWithRemainder(const BigInteger &b, BigInteger &q) {
286 // same idea as in BigUnsigned::divideWithRemainder .
291 divideWithRemainder(tmpB, q);
342 mag.divideWithRemainder(b.mag, q.mag);
BigUnsigned.cc 387 void BigUnsigned::divideWithRemainder(const BigUnsigned &b, BigUnsigned &q) {
399 divideWithRemainder(tmpB, q);
670 // Allocate and then increase length, as in divideWithRemainder

Completed in 576 milliseconds