3 implementations of MinBinaryExponent
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2299static int IBinaryFloatParseAndFormatInfo<double>.MinBinaryExponent => 1 - MaxExponent;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2347static int IBinaryFloatParseAndFormatInfo<Half>.MinBinaryExponent => 1 - MaxExponent;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2215static int IBinaryFloatParseAndFormatInfo<float>.MinBinaryExponent => 1 - MaxExponent;
2 references to MinBinaryExponent
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2563exponent = TNumber.MinBinaryExponent - TNumber.DenormalMantissaBits;
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
738else if (normalExponent < TFloat.MinBinaryExponent)