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)
473
Int128 totalMicroseconds = Math.
BigMul
(days, MicrosecondsPerDay)
474
+ Math.
BigMul
(hours, MicrosecondsPerHour)
475
+ Math.
BigMul
(minutes, MicrosecondsPerMinute)
476
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
477
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
509
Int128 totalMicroseconds = Math.
BigMul
(hours, MicrosecondsPerHour)
510
+ Math.
BigMul
(minutes, MicrosecondsPerMinute)
511
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
512
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
543
Int128 totalMicroseconds = Math.
BigMul
(minutes, MicrosecondsPerMinute)
544
+ Math.
BigMul
(seconds, MicrosecondsPerSecond)
545
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
575
Int128 totalMicroseconds = Math.
BigMul
(seconds, MicrosecondsPerSecond)
576
+ Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)
606
Int128 totalMicroseconds = Math.
BigMul
(milliseconds, MicrosecondsPerMillisecond)