10 references to DecimalIeee754ToIntegerStatus
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (10)
3441
private static
DecimalIeee754ToIntegerStatus
DecimalIeee754ToIntegerMagnitude<TDecimal, TValue>(TValue decimalBits, out bool isNegative, out UInt128 magnitude, out bool exceedsUInt128)
3451
return
DecimalIeee754ToIntegerStatus
.NaN;
3456
return isNegative ?
DecimalIeee754ToIntegerStatus
.NegativeInfinity :
DecimalIeee754ToIntegerStatus
.PositiveInfinity;
3467
return
DecimalIeee754ToIntegerStatus
.Finite;
3500
return
DecimalIeee754ToIntegerStatus
.Finite;
3514
DecimalIeee754ToIntegerStatus
status = DecimalIeee754ToIntegerMagnitude<TDecimal, TValue>(decimalBits, out bool isNegative, out UInt128 magnitude, out bool exceedsUInt128);
3523
case
DecimalIeee754ToIntegerStatus
.NaN:
3532
case
DecimalIeee754ToIntegerStatus
.PositiveInfinity:
3541
case
DecimalIeee754ToIntegerStatus
.NegativeInfinity: