12 references to Low64
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (3)
806long l = (long)d.Low64; 868ulong l = d.Low64; 1293public static int Sign(decimal d) => (d.Low64 | d.High) == 0 ? 0 : (d._flags >> 31) | 1;
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (7)
1319if ((d2.Low64 | d2.High) == 0) 1321if ((d1.Low64 | d1.High) == 0) 1325if ((d1.Low64 | d1.High) == 0) 1340ulong low64 = d1.Low64; 1343ulong d2Low64 = d2.Low64; 1906double dbl = ((double)value.Low64 + 1917if ((d.Low64 | d.High) == 0)
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
474Int128 result = new Int128(value.High, value.Low64);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
502return new UInt128(value.High, value.Low64);