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