10 references to BigMul
Microsoft.CodeAnalysis (1)
Hashing\XxHashShared.cs (1)
465return Math.BigMul(left, right, out lower);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\Hashing\XxHashShared.cs (1)
465return Math.BigMul(left, right, out lower);
System.IO.Hashing (1)
System\IO\Hashing\XxHashShared.cs (1)
456return Math.BigMul(left, right, out lower);
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (2)
184ulong high = Math.BigMul(a, b, out ulong low); 1502ulong mid64 = Math.BigMul(d1.Low64, d2.Low64, out tmp);
src\libraries\System.Private.CoreLib\src\System\Math.cs (3)
194return Math.BigMul((ulong)a, (ulong)b, out low); 270ulong high = BigMul((ulong)a, (ulong)b, out ulong ulow); 283ulong high = BigMul(a, b, out ulong low);
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);