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