10 references to Low64
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (3)
800
long l = (long)d.
Low64
;
862
ulong l = d.
Low64
;
1263
public 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)
1364
ulong low64 = d1.
Low64
;
1367
ulong d2Low64 = d2.
Low64
;
1710
float flt = DecimalToFloatingPoint<float>(value.
Low64
, value.High, value.Scale);
1719
double dbl = DecimalToFloatingPoint<double>(value.
Low64
, value.High, value.Scale);
1893
if ((d.
Low64
| d.High) == 0)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
468
Int128 result = new Int128(value.High, value.
Low64
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
496
return new UInt128(value.High, value.
Low64
);