4 implementations of MinBinaryExponent
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2565static int IBinaryFloatParseAndFormatInfo<double>.MinBinaryExponent => 1 - MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2408static int IBinaryFloatParseAndFormatInfo<Half>.MinBinaryExponent => 1 - MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2129static int IBinaryFloatParseAndFormatInfo<BFloat16>.MinBinaryExponent => 1 - MaxExponent;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2253static int IBinaryFloatParseAndFormatInfo<float>.MinBinaryExponent => 1 - MaxExponent;
2 references to MinBinaryExponent
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
3049exponent = TNumber.MinBinaryExponent - TNumber.DenormalMantissaBits;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (1)
753else if (normalExponent < TFloat.MinBinaryExponent)