Lines Matching refs:BigInt
52 void BigInt::MakeBigInt( const BigInt& rVal ) in MakeBigInt()
56 memcpy( (void*)this, (const void*)&rVal, sizeof( BigInt ) ); in MakeBigInt()
90 void BigInt::Normalize() in Normalize()
122 void BigInt::Mult( const BigInt &rVal, sal_uInt16 nMul ) in Mult()
146 void BigInt::Div( sal_uInt16 nDiv, sal_uInt16& rRem ) in Div()
163 sal_Bool BigInt::IsLess( const BigInt& rVal ) const in IsLess()
179 void BigInt::AddLong( BigInt& rB, BigInt& rErg ) in AddLong()
242 void BigInt::SubLong( BigInt& rB, BigInt& rErg ) in SubLong()
315 void BigInt::MultLong( const BigInt& rB, BigInt& rErg ) const in MultLong()
342 void BigInt::DivLong( const BigInt& rB, BigInt& rErg ) const in DivLong()
349 BigInt aTmpA, aTmpB; in DivLong()
413 void BigInt::ModLong( const BigInt& rB, BigInt& rErg ) const in ModLong()
420 BigInt aTmpA, aTmpB; in ModLong()
482 sal_Bool BigInt::ABS_IsLess( const BigInt& rB ) const in ABS_IsLess()
486 BigInt nA, nB; in ABS_IsLess()
514 BigInt::BigInt( const BigInt& rBigInt ) in BigInt() function in BigInt
517 memcpy( (void*)this, (const void*)&rBigInt, sizeof( BigInt ) ); in BigInt()
528 BigInt::BigInt( const ByteString& rString ) in BigInt() function in BigInt
556 BigInt::BigInt( const UniString& rString ) in BigInt() function in BigInt
584 BigInt::BigInt( double nValue ) in BigInt() function in BigInt
628 BigInt::BigInt( sal_uInt32 nValue ) in BigInt() function in BigInt
648 BigInt::operator sal_uIntPtr() const in operator sal_uIntPtr()
664 BigInt::operator double() const
689 ByteString BigInt::GetByteString() const in GetByteString()
697 BigInt aTmp( *this ); in GetByteString()
698 BigInt a1000000000( 1000000000L ); in GetByteString()
703 BigInt a = aTmp; in GetByteString()
732 UniString BigInt::GetString() const in GetString()
740 BigInt aTmp( *this ); in GetString()
741 BigInt a1000000000( 1000000000L ); in GetString()
746 BigInt a = aTmp; in GetString()
775 BigInt& BigInt::operator=( const BigInt& rBigInt ) in operator =()
778 memcpy( (void*)this, (const void*)&rBigInt, sizeof( BigInt ) ); in operator =()
790 BigInt& BigInt::operator+=( const BigInt& rVal ) in operator +=()
808 BigInt aTmp1, aTmp2; in operator +=()
818 BigInt& BigInt::operator-=( const BigInt& rVal ) in operator -=()
836 BigInt aTmp1, aTmp2; in operator -=()
846 BigInt& BigInt::operator*=( const BigInt& rVal ) in operator *=()
857 BigInt aTmp1, aTmp2; in operator *=()
868 BigInt& BigInt::operator/=( const BigInt& rVal ) in operator /=()
914 *this = BigInt( (long)0 ); in operator /=()
919 BigInt aTmp1, aTmp2; in operator /=()
929 void BigInt::DivMod( const BigInt& rVal, BigInt& rMod ) in DivMod()
942 rMod = BigInt( nVal % rVal.nVal ); in DivMod()
949 rMod = BigInt( (long)0 ); in DivMod()
955 rMod = BigInt( (long)0 ); in DivMod()
973 rMod = BigInt( (long)nTmp ); in DivMod()
982 *this = BigInt( (long)0 ); in DivMod()
987 BigInt aTmp1, aTmp2; in DivMod()
998 BigInt& BigInt::operator%=( const BigInt& rVal ) in operator %=()
1028 *this = BigInt( (long)nTmp ); in operator %=()
1037 BigInt aTmp1, aTmp2; in operator %=()
1047 sal_Bool operator==( const BigInt& rVal1, const BigInt& rVal2 ) in operator ==()
1051 BigInt nA, nB; in operator ==()
1074 sal_Bool operator<( const BigInt& rVal1, const BigInt& rVal2 ) in operator <()
1078 BigInt nA, nB; in operator <()
1107 sal_Bool operator >(const BigInt& rVal1, const BigInt& rVal2 ) in operator >()
1111 BigInt nA, nB; in operator >()