3 implementations of MaxExponentRoundToEven
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2318static int IBinaryFloatParseAndFormatInfo<double>.MaxExponentRoundToEven => 23;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2366static int IBinaryFloatParseAndFormatInfo<Half>.MaxExponentRoundToEven => 5;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2234static int IBinaryFloatParseAndFormatInfo<float>.MaxExponentRoundToEven => 10;
1 reference to MaxExponentRoundToEven
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) &&