7 references to GreaterThanDecimalIeee754
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (4)
3223
if (
GreaterThanDecimalIeee754
<TDecimal, TValue>(ax, ay) || TDecimal.IsNaN(ax))
3263
if (
GreaterThanDecimalIeee754
<TDecimal, TValue>(ax, ay) || TDecimal.IsNaN(ay))
3316
return
GreaterThanDecimalIeee754
<TDecimal, TValue>(x, y) ? x : y;
3348
return CanonicalizeIfNaN<TDecimal, TValue>(
GreaterThanDecimalIeee754
<TDecimal, TValue>(x, y) ? x : y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
730
return Number.
GreaterThanDecimalIeee754
<Decimal128, UInt128>(new UInt128(left._upper, left._lower), new UInt128(right._upper, right._lower));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
741
return Number.
GreaterThanDecimalIeee754
<Decimal32, uint>(left._value, right._value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
734
return Number.
GreaterThanDecimalIeee754
<Decimal64, ulong>(left._value, right._value);