16 references to BigMul
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
54
public static Int128 BigMul(long left, long right) => Math.
BigMul
(left, right);
src\libraries\System.Private.CoreLib\src\System\TimeSpan.cs (15)
479
Int128 totalMicroseconds = Math.
BigMul
(days, MicrosecondsPerDay)
480
+ Math.
BigMul
(hours, MicrosecondsPerHour)
481
+ Math.
BigMul
(minutes, MicrosecondsPerMinute)
482
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
483
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
515
Int128 totalMicroseconds = Math.
BigMul
(hours, MicrosecondsPerHour)
516
+ Math.
BigMul
(minutes, MicrosecondsPerMinute)
517
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
518
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
549
Int128 totalMicroseconds = Math.
BigMul
(minutes, MicrosecondsPerMinute)
550
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
551
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
581
Int128 totalMicroseconds = Math.
BigMul
(seconds, MicrosecondsPerSecond)
582
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
612
Int128 totalMicroseconds = Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)