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