10 references to BigMul
Microsoft.CodeAnalysis (1)
Hashing\XxHashShared.cs (1)
465
return Math.
BigMul
(left, right, out lower);
Microsoft.CodeAnalysis.Workspaces (1)
src\Compilers\Core\Portable\Hashing\XxHashShared.cs (1)
465
return Math.
BigMul
(left, right, out lower);
System.IO.Hashing (1)
System\IO\Hashing\XxHashShared.cs (1)
456
return Math.
BigMul
(left, right, out lower);
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (2)
184
ulong high = Math.
BigMul
(a, b, out ulong low);
1502
ulong mid64 = Math.
BigMul
(d1.Low64, d2.Low64, out tmp);
src\libraries\System.Private.CoreLib\src\System\Math.cs (3)
194
return Math.
BigMul
((ulong)a, (ulong)b, out low);
270
ulong high =
BigMul
((ulong)a, (ulong)b, out ulong ulow);
283
ulong high =
BigMul
(a, b, out ulong low);
src\libraries\System.Private.CoreLib\src\System\Random.ImplBase.cs (2)
61
ulong randomProduct = Math.
BigMul
(maxValue, xoshiro.NextUInt64(), out ulong lowPart);
69
randomProduct = Math.
BigMul
(maxValue, xoshiro.NextUInt64(), out lowPart);