10 references to Low64
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (3)
800long l = (long)d.Low64; 862ulong l = d.Low64; 1263public static int Sign(decimal d) => (d.Low64 | d.High) == 0 ? 0 : (d._flags >> 31) | 1;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (5)
1364ulong low64 = d1.Low64; 1367ulong d2Low64 = d2.Low64; 1710float flt = DecimalToFloatingPoint<float>(value.Low64, value.High, value.Scale); 1719double dbl = DecimalToFloatingPoint<double>(value.Low64, value.High, value.Scale); 1893if ((d.Low64 | d.High) == 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
468Int128 result = new Int128(value.High, value.Low64);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
496return new UInt128(value.High, value.Low64);