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