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