Home | History | Annotate | Download | only in dist

Lines Matching refs:rhs

50   mp_limb_t& operator op##=(const type& rhs) {		\
51 limbo = (limbo op rhs.limbo) & GMP_NUMB_MASK; \
55 mp_limb_t& operator op##=(const type& rhs) { \
56 limbo = limbo op rhs.limbo; \
66 mp_limb_t(const unsigned int rhs) { limbo = rhs & GMP_NUMB_MASK; }
67 // mp_limb_t(const mp_limb_t& rhs) { limbo = rhs.limbo; } // Causes havoc
76 mp_limb_t& operator<<=(const unsigned int rhs) {
77 GMP_ASSERT_ALWAYS (rhs < GMP_LIMB_BITS);
78 limbo = (limbo << rhs) & GMP_NUMB_MASK;
81 mp_limb_t& operator>>=(const unsigned int rhs) {
82 GMP_ASSERT_ALWAYS (rhs < GMP_LIMB_BITS);
83 limbo = limbo >> rhs;
98 inline bool operator op(const mp_limb_t rhs) { \
99 return limbo op rhs.limbo; \
113 inline mp_limb_t operator op(mp_limb_t lhs, const type& rhs) { \
114 lhs op##= rhs; \