3 references to EncodeDecimalIeee754
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
288
public static UInt128 EncodeDecimal(Decimal128 x) => Number.
EncodeDecimalIeee754
<Decimal128, UInt128>(new UInt128(x._upper, x._lower));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
282
public static uint EncodeDecimal(Decimal32 x) => Number.
EncodeDecimalIeee754
<Decimal32, uint>(x._value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
285
public static ulong EncodeDecimal(Decimal64 x) => Number.
EncodeDecimalIeee754
<Decimal64, ulong>(x._value);