8 references to BiasedExponentShift
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (4)
779TVectorUInt32 exponent = ((bits >> float.BiasedExponentShift) & TVectorUInt32.Create(float.ShiftedBiasedExponentMask)) - TVectorUInt32.Create(float.ExponentBias); 780TVectorUInt32 fractionalBits = TVectorUInt32.Create(float.BiasedExponentShift) - exponent; 829TVectorUInt32 exponent = ((bits >> float.BiasedExponentShift) & TVectorUInt32.Create(float.ShiftedBiasedExponentMask)) - TVectorUInt32.Create(float.ExponentBias); 830TVectorUInt32 fractionalBits = TVectorUInt32.Create(float.BiasedExponentShift) - exponent;
src\libraries\System.Private.CoreLib\src\System\Single.cs (4)
88internal const byte ShiftedBiasedExponentMask = (byte)(BiasedExponentMask >> BiasedExponentShift); 142return TrailingSignificand | ((BiasedExponent != 0) ? (1U << BiasedExponentShift) : 0U); 157return (byte)((bits >> BiasedExponentShift) & ShiftedBiasedExponentMask); 165internal static float CreateSingle(bool sign, byte exp, uint sig) => BitConverter.UInt32BitsToSingle((sign ? SignMask : 0U) + ((uint)exp << BiasedExponentShift) + sig);