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