Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IncreaseScale64()

static void System.Decimal.DecCalc.IncreaseScale64 ( ref Buf12 bufNum,
uint power )
inlinestaticprivate

Definition at line 504 of file Decimal.cs.

505 {
506 ulong num = UInt32x32To64(bufNum.U0, power);
507 bufNum.U0 = (uint)num;
508 num >>= 32;
509 num += UInt32x32To64(bufNum.U1, power);
510 bufNum.High64 = num;
511 }
static ulong UInt32x32To64(uint a, uint b)
Definition Decimal.cs:300

References System.Runtime.Serialization.Dictionary, and System.Decimal.DecCalc.UInt32x32To64().

Referenced by System.Decimal.DecCalc.VarDecDiv().