3 references to MaxNativeDecimalIeee754
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1250
public static Decimal128 MaxNative(Decimal128 x, Decimal128 y) => new Decimal128(Number.
MaxNativeDecimalIeee754
<Decimal128, UInt128>(new UInt128(x._upper, x._lower), new UInt128(y._upper, y._lower)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1261
public static Decimal32 MaxNative(Decimal32 x, Decimal32 y) => new Decimal32(Number.
MaxNativeDecimalIeee754
<Decimal32, uint>(x._value, y._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1254
public static Decimal64 MaxNative(Decimal64 x, Decimal64 y) => new Decimal64(Number.
MaxNativeDecimalIeee754
<Decimal64, ulong>(x._value, y._value));