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