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