mult 432 core/BigInteger.cpp divisor->mult(&u,&usq); // usq = divisor*u^2 mult 449 core/BigInteger.cpp result = this->mult(&u,result); // mult by reciprocal (scaled by e) mult 454 core/BigInteger.cpp divisor->mult(result, &temp); // compute residual as this - divisor*result mult 173 core/BigInteger.h BigInteger* mult(const BigInteger* other, BigInteger* result) const; mult 178 core/BigInteger.h mult(other,&tempInt);