4 references to ExponentBias
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
778TVectorUInt32 exponent = ((bits >> float.BiasedExponentShift) & TVectorUInt32.Create(float.ShiftedBiasedExponentMask)) - TVectorUInt32.Create(float.ExponentBias); 828TVectorUInt32 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); 2212static int IBinaryFloatParseAndFormatInfo<float>.ExponentBias => ExponentBias;