Lines Matching refs:aTmp1
808 BigInt aTmp1, aTmp2; in operator +=() local
809 aTmp1.MakeBigInt( *this ); in operator +=()
811 aTmp1.AddLong( aTmp2, *this ); in operator +=()
836 BigInt aTmp1, aTmp2; in operator -=() local
837 aTmp1.MakeBigInt( *this ); in operator -=()
839 aTmp1.SubLong( aTmp2, *this ); in operator -=()
857 BigInt aTmp1, aTmp2; in operator *=() local
858 aTmp1.MakeBigInt( rVal ); in operator *=()
860 aTmp1.MultLong(aTmp2, *this); in operator *=()
919 BigInt aTmp1, aTmp2; in operator /=() local
920 aTmp1.MakeBigInt( *this ); in operator /=()
922 aTmp1.DivLong(aTmp2, *this); in operator /=()
987 BigInt aTmp1, aTmp2; in DivMod() local
988 aTmp1.MakeBigInt( *this ); in DivMod()
990 aTmp1.DivLong(aTmp2, *this); in DivMod()
992 aTmp1.ModLong(aTmp2, rMod); // nicht optimal in DivMod()
1037 BigInt aTmp1, aTmp2; in operator %=() local
1038 aTmp1.MakeBigInt( *this ); in operator %=()
1040 aTmp1.ModLong(aTmp2, *this); in operator %=()