4 implementations of MaxExponentRoundToEven
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2584static int IBinaryFloatParseAndFormatInfo<double>.MaxExponentRoundToEven => 23;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2427static int IBinaryFloatParseAndFormatInfo<Half>.MaxExponentRoundToEven => 5;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2148static int IBinaryFloatParseAndFormatInfo<BFloat16>.MaxExponentRoundToEven => 3;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2272static int IBinaryFloatParseAndFormatInfo<float>.MaxExponentRoundToEven => 10;
1 reference to MaxExponentRoundToEven
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
1347if ((product.low <= 1) && (q >= TFloat.MinExponentRoundToEven) && (q <= TFloat.MaxExponentRoundToEven) &&