25 references to BigMul
System.Private.CoreLib (25)
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTime.cs (3)
1360
ulong u2 = Math.
BigMul
(EafMultiplier, r1 | 3U);
1422
ulong u2 = Math.
BigMul
(EafMultiplier, r1 | 3U);
1498
ulong u2 = Math.
BigMul
(EafMultiplier, r1 | 3U);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (15)
428
ulong prod = Math.
BigMul
(quo, (uint)den); // quo * lo divisor
531
hi64 = Math.
BigMul
(bufNum.U2, power) + hi64;
558
bufNum.High64 = Math.
BigMul
(bufNum.U2, power) + hi64;
999
low64 = Math.
BigMul
((uint)low64, UInt32Powers10[scale]);
1003
low64 = Math.
BigMul
((uint)low64, TenToPowerNine);
1026
tmp64 += Math.
BigMul
(high, power);
1058
tmp64 += Math.
BigMul
(rgulNum[cur], power);
1360
tmp += Math.
BigMul
(high, power);
1403
ulong low64 = Math.
BigMul
(d1.Low, d2.Low);
1439
tmp += Math.
BigMul
(d1.Low, d2.High);
1459
tmp += Math.
BigMul
(d2.Low, d1.High);
1495
ulong hi64 = Math.
BigMul
(d1.High, d2.High);
1950
ulong num = Math.
BigMul
(remainder, power);
2256
ulong tmp64 = Math.
BigMul
(b.Buf24.U0, power);
2261
tmp64 += Math.
BigMul
(buf[i], power);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Math.cs (6)
1607
valMid =
BigMul
(val2High, (uint)left);
1614
valMid =
BigMul
(val1High, (uint)right);
1621
long ret = (long)(
BigMul
((uint)left, (uint)right) + (valMid << 32));
1665
valMid =
BigMul
(val2High, (uint)left);
1672
valMid =
BigMul
(val1High, (uint)right);
1679
ulong ret =
BigMul
((uint)left, (uint)right) + (valMid << 32);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
51
public static ulong BigMul(uint left, uint right) => Math.
BigMul
(left, right);