3 implementations of MinExponentRoundToEven
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2317static int IBinaryFloatParseAndFormatInfo<double>.MinExponentRoundToEven => -4;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2365static int IBinaryFloatParseAndFormatInfo<Half>.MinExponentRoundToEven => -21;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2233static int IBinaryFloatParseAndFormatInfo<float>.MinExponentRoundToEven => -17;
1 reference to MinExponentRoundToEven
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
1357if ((product.low <= 1) && (q >= TFloat.MinExponentRoundToEven) && (q <= TFloat.MaxExponentRoundToEven) &&