11 references to Low
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (7)
215
info.AddValue("lo", (int)
Low
);
575
return [(int)d.
Low
, (int)d.Mid, (int)d.High, d._flags];
592
destination[0] = (int)d.
Low
;
614
destination[0] = (int)d.
Low
;
626
BinaryPrimitives.WriteInt32LittleEndian(buffer, (int)d.
Low
);
777
int i = (int)d.
Low
;
845
uint i = d.
Low
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (3)
1897
if ((flags & ScaleMask) == 0 || (d.
Low
& 1) != 0)
1898
return (int)(flags ^ d.High ^ d.Mid ^ d.
Low
);
1901
uint low = d.
Low
;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
624
p = UInt32ToDecChars(p, d.
Low
, 0);