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