Lines Matching refs:r

50 	SbxINT64( SbxINT64 &r ) : nHigh( r.nHigh ), nLow( r.nLow ) {}  in SbxINT64()
52 SbxINT64( BigInt &r );
86 SbxINT64 &operator -= ( const SbxINT64 &r );
87 SbxINT64 &operator += ( const SbxINT64 &r );
88 SbxINT64 &operator /= ( const SbxINT64 &r );
89 SbxINT64 &operator %= ( const SbxINT64 &r );
90 SbxINT64 &operator *= ( const SbxINT64 &r );
91 SbxINT64 &operator &= ( const SbxINT64 &r );
92 SbxINT64 &operator |= ( const SbxINT64 &r );
93 SbxINT64 &operator ^= ( const SbxINT64 &r );
95 friend SbxINT64 operator - ( const SbxINT64 &l, const SbxINT64 &r );
96 friend SbxINT64 operator + ( const SbxINT64 &l, const SbxINT64 &r );
97 friend SbxINT64 operator / ( const SbxINT64 &l, const SbxINT64 &r );
98 friend SbxINT64 operator % ( const SbxINT64 &l, const SbxINT64 &r );
99 friend SbxINT64 operator * ( const SbxINT64 &l, const SbxINT64 &r );
100 friend SbxINT64 operator & ( const SbxINT64 &l, const SbxINT64 &r );
101 friend SbxINT64 operator | ( const SbxINT64 &l, const SbxINT64 &r );
102 friend SbxINT64 operator ^ ( const SbxINT64 &l, const SbxINT64 &r );
104 friend SbxINT64 operator - ( const SbxINT64 &r );
105 friend SbxINT64 operator ~ ( const SbxINT64 &r );
132 SbxUINT64 &operator -= ( const SbxUINT64 &r );
133 SbxUINT64 &operator += ( const SbxUINT64 &r );
134 SbxUINT64 &operator /= ( const SbxUINT64 &r );
135 SbxUINT64 &operator %= ( const SbxUINT64 &r );
136 SbxUINT64 &operator *= ( const SbxUINT64 &r );
137 SbxUINT64 &operator &= ( const SbxUINT64 &r );
138 SbxUINT64 &operator |= ( const SbxUINT64 &r );
139 SbxUINT64 &operator ^= ( const SbxUINT64 &r );
141 friend SbxUINT64 operator - ( const SbxUINT64 &l, const SbxUINT64 &r );
142 friend SbxUINT64 operator + ( const SbxUINT64 &l, const SbxUINT64 &r );
143 friend SbxUINT64 operator / ( const SbxUINT64 &l, const SbxUINT64 &r );
144 friend SbxUINT64 operator % ( const SbxUINT64 &l, const SbxUINT64 &r );
145 friend SbxUINT64 operator * ( const SbxUINT64 &l, const SbxUINT64 &r );
146 friend SbxUINT64 operator & ( const SbxUINT64 &l, const SbxUINT64 &r );
147 friend SbxUINT64 operator | ( const SbxUINT64 &l, const SbxUINT64 &r );
148 friend SbxUINT64 operator ^ ( const SbxUINT64 &l, const SbxUINT64 &r );
150 friend SbxUINT64 operator ~ ( const SbxUINT64 &r );
376 inline int SbxValue::operator==( const SbxValue& r ) const in operator ==()
377 { return Compare( SbxEQ, r ); } in operator ==()
379 inline int SbxValue::operator!=( const SbxValue& r ) const in operator !=()
380 { return Compare( SbxNE, r ); } in operator !=()
382 inline int SbxValue::operator<( const SbxValue& r ) const in operator <()
383 { return Compare( SbxLT, r ); } in operator <()
385 inline int SbxValue::operator>( const SbxValue& r ) const in operator >()
386 { return Compare( SbxGT, r ); } in operator >()
388 inline int SbxValue::operator<=( const SbxValue& r ) const in operator <=()
389 { return Compare( SbxLE, r ); } in operator <=()
391 inline int SbxValue::operator>=( const SbxValue& r ) const in operator >=()
392 { return Compare( SbxGE, r ); } in operator >=()
394 inline SbxValue& SbxValue::operator*=( const SbxValue& r ) in operator *=() argument
395 { Compute( SbxMUL, r ); return *this; } in operator *=()
397 inline SbxValue& SbxValue::operator/=( const SbxValue& r ) in operator /=() argument
398 { Compute( SbxDIV, r ); return *this; } in operator /=()
400 inline SbxValue& SbxValue::operator%=( const SbxValue& r ) in operator %=() argument
401 { Compute( SbxMOD, r ); return *this; } in operator %=()
403 inline SbxValue& SbxValue::operator+=( const SbxValue& r ) in operator +=() argument
404 { Compute( SbxPLUS, r ); return *this; } in operator +=()
406 inline SbxValue& SbxValue::operator-=( const SbxValue& r ) in operator -=() argument
407 { Compute( SbxMINUS, r ); return *this; } in operator -=()
409 inline SbxValue& SbxValue::operator&=( const SbxValue& r ) in operator &=() argument
410 { Compute( SbxAND, r ); return *this; } in operator &=()
412 inline SbxValue& SbxValue::operator|=( const SbxValue& r ) in operator |=() argument
413 { Compute( SbxOR, r ); return *this; } in operator |=()
415 inline SbxValue& SbxValue::operator^=( const SbxValue& r ) in operator ^=() argument
416 { Compute( SbxXOR, r ); return *this; } in operator ^=()