6 references to ExponentBias
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (2)
549float scaleFactor = float.CreateSingle(sign, (byte)(sizeof(TInteger) * 8 - SignificandLength - scale + float.ExponentBias), 0); 610float scaleFactor = float.CreateSingle(false, (byte)(sizeof(TInteger) * 8 - SignificandLength - scale + float.ExponentBias), 0);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
779TVectorUInt32 exponent = ((bits >> float.BiasedExponentShift) & TVectorUInt32.Create(float.ShiftedBiasedExponentMask)) - TVectorUInt32.Create(float.ExponentBias); 829TVectorUInt32 exponent = ((bits >> float.BiasedExponentShift) & TVectorUInt32.Create(float.ShiftedBiasedExponentMask)) - TVectorUInt32.Create(float.ExponentBias);
src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
134return (sbyte)(BiasedExponent - ExponentBias); 2218static int IBinaryFloatParseAndFormatInfo<float>.ExponentBias => ExponentBias;