4 implementations of ExponentBias
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
2571
static int IBinaryFloatParseAndFormatInfo<double>.
ExponentBias
=> ExponentBias;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2414
static int IBinaryFloatParseAndFormatInfo<Half>.
ExponentBias
=> ExponentBias;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2135
static int IBinaryFloatParseAndFormatInfo<BFloat16>.
ExponentBias
=> ExponentBias;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
2259
static int IBinaryFloatParseAndFormatInfo<float>.
ExponentBias
=> ExponentBias;
7 references to ExponentBias
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (2)
1639
exponent = 1 - TNumber.
ExponentBias
- denormalMantissaBits;
1644
exponent = biasedExponent - TNumber.
ExponentBias
- denormalMantissaBits;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
3039
exponent -= TNumber.
ExponentBias
+ TNumber.DenormalMantissaBits;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.NumberToFloatingPointBits.cs (3)
761
int denormalMantissaShift = normalMantissaShift + normalExponent + TFloat.
ExponentBias
- 1;
765
exponent = -TFloat.
ExponentBias
;
845
ulong shiftedExponent = ((ulong)(exponent + TFloat.
ExponentBias
)) << TFloat.DenormalMantissaBits;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
1498
long biasedExp = actualExp + TFloat.
ExponentBias
;