Lines Matching refs:rVal2

123     friend inline   BigInt operator +( const BigInt& rVal1, const BigInt& rVal2 );
124 friend inline BigInt operator -( const BigInt& rVal1, const BigInt& rVal2 );
125 friend inline BigInt operator *( const BigInt& rVal1, const BigInt& rVal2 );
126 friend inline BigInt operator /( const BigInt& rVal1, const BigInt& rVal2 );
127 friend inline BigInt operator %( const BigInt& rVal1, const BigInt& rVal2 );
129 TOOLS_DLLPUBLIC friend sal_Bool operator==( const BigInt& rVal1, const BigInt& rVal2 );
130 friend inline sal_Bool operator!=( const BigInt& rVal1, const BigInt& rVal2 );
131 TOOLS_DLLPUBLIC friend sal_Bool operator< ( const BigInt& rVal1, const BigInt& rVal2 );
132 TOOLS_DLLPUBLIC friend sal_Bool operator> ( const BigInt& rVal1, const BigInt& rVal2 );
133 friend inline sal_Bool operator<=( const BigInt& rVal1, const BigInt& rVal2 );
134 friend inline sal_Bool operator>=( const BigInt& rVal1, const BigInt& rVal2 );
274 inline BigInt operator+( const BigInt &rVal1, const BigInt &rVal2 ) in operator +() argument
277 aErg += rVal2; in operator +()
281 inline BigInt operator-( const BigInt &rVal1, const BigInt &rVal2 ) in operator -() argument
284 aErg -= rVal2; in operator -()
288 inline BigInt operator*( const BigInt &rVal1, const BigInt &rVal2 ) in operator *() argument
291 aErg *= rVal2; in operator *()
295 inline BigInt operator/( const BigInt &rVal1, const BigInt &rVal2 ) in operator /() argument
298 aErg /= rVal2; in operator /()
302 inline BigInt operator%( const BigInt &rVal1, const BigInt &rVal2 ) in operator %() argument
305 aErg %= rVal2; in operator %()
309 inline sal_Bool operator!=( const BigInt& rVal1, const BigInt& rVal2 ) in operator !=() argument
311 return !(rVal1 == rVal2); in operator !=()
314 inline sal_Bool operator<=( const BigInt& rVal1, const BigInt& rVal2 ) in operator <=() argument
316 return !( rVal1 > rVal2); in operator <=()
319 inline sal_Bool operator>=( const BigInt& rVal1, const BigInt& rVal2 ) in operator >=() argument
321 return !(rVal1 < rVal2); in operator >=()