5 references to BigMul
System.IO.Hashing (1)
System\IO\Hashing\XxHashShared.cs (1)
456return Math.BigMul(left, right, out lower);
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (1)
182ulong high = Math.BigMul(a, b, out ulong low);
src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
236ulong high = BigMul((ulong)a, (ulong)b, out ulong ulow);
src\libraries\System.Private.CoreLib\src\System\Random.ImplBase.cs (2)
61ulong randomProduct = Math.BigMul(maxValue, xoshiro.NextUInt64(), out ulong lowPart); 69randomProduct = Math.BigMul(maxValue, xoshiro.NextUInt64(), out lowPart);