4 implementations of InfinityExponent
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2306
static int IBinaryFloatParseAndFormatInfo<double>.
InfinityExponent
=> 0x7FF;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2353
static int IBinaryFloatParseAndFormatInfo<Half>.
InfinityExponent
=> MaxBiasedExponent;
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2130
static int IBinaryFloatParseAndFormatInfo<BFloat16>.
InfinityExponent
=> MaxBiasedExponent;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2222
static int IBinaryFloatParseAndFormatInfo<float>.
InfinityExponent
=> 0xFF;
4 references to InfinityExponent
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2590
exponent = ((int)(bits >> TNumber.DenormalMantissaBits) & TNumber.
InfinityExponent
);
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
1288
exponent = TFloat.
InfinityExponent
;
1381
if (exponent >= TFloat.
InfinityExponent
)
1384
exponent = TFloat.
InfinityExponent
;