3 implementations of ExponentBias
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2305
static int IBinaryFloatParseAndFormatInfo<double>.
ExponentBias
=> ExponentBias;
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2353
static int IBinaryFloatParseAndFormatInfo<Half>.
ExponentBias
=> ExponentBias;
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2221
static int IBinaryFloatParseAndFormatInfo<float>.
ExponentBias
=> ExponentBias;
4 references to ExponentBias
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2553
exponent -= TNumber.
ExponentBias
+ TNumber.DenormalMantissaBits;
src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
746
int denormalMantissaShift = normalMantissaShift + normalExponent + TFloat.
ExponentBias
- 1;
750
exponent = -TFloat.
ExponentBias
;
830
ulong shiftedExponent = ((ulong)(exponent + TFloat.
ExponentBias
)) << TFloat.DenormalMantissaBits;