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