11 references to Low
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (7)
215
info.AddValue("lo", (int)
Low
);
581
return [(int)d.
Low
, (int)d.Mid, (int)d.High, d._flags];
598
destination[0] = (int)d.
Low
;
620
destination[0] = (int)d.
Low
;
632
BinaryPrimitives.WriteInt32LittleEndian(buffer, (int)d.
Low
);
783
int i = (int)d.
Low
;
851
uint i = d.
Low
;
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (3)
1921
if ((flags & ScaleMask) == 0 || (d.
Low
& 1) != 0)
1922
return (int)(flags ^ d.High ^ d.Mid ^ d.
Low
);
1925
uint low = d.
Low
;
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
398
p = UInt32ToDecChars(p, d.
Low
, 0);