Searched refs:SlowMPInt (Results 1 – 5 of 5) sorted by relevance
57 SlowMPInt &operator+=(const SlowMPInt &o);66 friend SlowMPInt abs(const SlowMPInt &x);67 friend SlowMPInt ceilDiv(const SlowMPInt &lhs, const SlowMPInt &rhs);68 friend SlowMPInt floorDiv(const SlowMPInt &lhs, const SlowMPInt &rhs);70 friend SlowMPInt gcd(const SlowMPInt &a, const SlowMPInt &b);87 SlowMPInt mod(const SlowMPInt &lhs, const SlowMPInt &rhs);90 SlowMPInt lcm(const SlowMPInt &a, const SlowMPInt &b);94 SlowMPInt abs(const SlowMPInt &x);95 SlowMPInt ceilDiv(const SlowMPInt &lhs, const SlowMPInt &rhs);96 SlowMPInt floorDiv(const SlowMPInt &lhs, const SlowMPInt &rhs);[all …]
96 valLarge.detail::SlowMPInt::~SlowMPInt(); in initSmall()155 valLarge.detail::SlowMPInt::~SlowMPInt(); in ~MPInt()286 return detail::SlowMPInt(*this) == detail::SlowMPInt(o);291 return detail::SlowMPInt(*this) != detail::SlowMPInt(o);296 return detail::SlowMPInt(*this) > detail::SlowMPInt(o);301 return detail::SlowMPInt(*this) < detail::SlowMPInt(o);306 return detail::SlowMPInt(*this) <= detail::SlowMPInt(o);311 return detail::SlowMPInt(*this) >= detail::SlowMPInt(o);326 return MPInt(detail::SlowMPInt(*this) + detail::SlowMPInt(o));337 return MPInt(detail::SlowMPInt(*this) - detail::SlowMPInt(o));[all …]
17 SlowMPInt::SlowMPInt() : SlowMPInt(0) {} in SlowMPInt() function in SlowMPInt184 SlowMPInt SlowMPInt::operator+(const SlowMPInt &o) const { in operator +()188 SlowMPInt SlowMPInt::operator-(const SlowMPInt &o) const { in operator -()192 SlowMPInt SlowMPInt::operator*(const SlowMPInt &o) const { in operator *()196 SlowMPInt SlowMPInt::operator/(const SlowMPInt &o) const { in operator /()235 SlowMPInt SlowMPInt::operator%(const SlowMPInt &o) const { in operator %()252 SlowMPInt &SlowMPInt::operator+=(const SlowMPInt &o) { in operator +=()256 SlowMPInt &SlowMPInt::operator-=(const SlowMPInt &o) { in operator -=()260 SlowMPInt &SlowMPInt::operator*=(const SlowMPInt &o) { in operator *=()264 SlowMPInt &SlowMPInt::operator/=(const SlowMPInt &o) { in operator /=()[all …]
10 SlowMPInt.cpp
20 using TypeList = testing::Types<MPInt, detail::SlowMPInt>;28 if (std::is_same<T, detail::SlowMPInt>()) in GetName()