4 references to BiasedExponentShift
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (4)
44
internal const byte ShiftedBiasedExponentMask = BiasedExponentMask >>
BiasedExponentShift
;
113
private Half(bool sign, ushort exp, ushort sig) => _value = (ushort)(((sign ? 1 : 0) << SignShift) + (exp <<
BiasedExponentShift
) + sig);
136
return (ushort)(TrailingSignificand | ((BiasedExponent != 0) ? (1U <<
BiasedExponentShift
) : 0U));
151
return (byte)((bits >>
BiasedExponentShift
) & ShiftedBiasedExponentMask);