1 write to Low
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (1)
2153
d1.
Low
= low;
9 references to Low
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (9)
1440
ulong low64 = Math.BigMul(d1.
Low
, d2.
Low
);
1471
tmp = Math.BigMul(d1.
Low
, d2.Low64, out ulong low);
1476
tmp += Math.BigMul(d1.
Low
, d2.High);
1491
tmp = Math.BigMul(d1.Low64, d2.
Low
, out ulong low);
1496
tmp += Math.BigMul(d2.
Low
, d1.High);
1929
uint den = d2.
Low
;
2253
uint den = d2.
Low
;
2255
tmp = ((tmp % den) << 32) | d1.
Low
;