3 references to MaxDecimalIeee754
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1244
public static Decimal128 Max(Decimal128 x, Decimal128 y) => new Decimal128(Number.
MaxDecimalIeee754
<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)
1255
public static Decimal32 Max(Decimal32 x, Decimal32 y) => new Decimal32(Number.
MaxDecimalIeee754
<Decimal32, uint>(x._value, y._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1248
public static Decimal64 Max(Decimal64 x, Decimal64 y) => new Decimal64(Number.
MaxDecimalIeee754
<Decimal64, ulong>(x._value, y._value));