5 references to BigMul
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (4)
1382
UInt128 mull = Math.
BigMul
(al, bl);
1383
UInt128 t = Math.
BigMul
(ah, bl) + mull._upper;
1384
UInt128 tl = Math.
BigMul
(al, bh) + t._lower;
1387
return Math.
BigMul
(ah, bh) + t._upper + tl._upper;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
51
public static UInt128 BigMul(ulong left, ulong right) => Math.
BigMul
(left, right);