3 references to SignShift
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Half.cs (2)
1164uint signInt = (sign ? 1U : 0U) << float.SignShift; 1180private static float CreateSingle(bool sign, byte exp, uint sig) => BitConverter.UInt32BitsToSingle(((sign ? 1U : 0U) << float.SignShift) + ((uint)exp << float.BiasedExponentShift) + sig);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
83internal const byte ShiftedSignMask = (byte)(SignMask >> SignShift);