4 references to SignificandLength
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128Sqrt.cs (1)
569int shift = (64 + parity) - float.SignificandLength;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (3)
2250static ulong IBinaryFloatParseAndFormatInfo<float>.NormalMantissaMask => (1UL << SignificandLength) - 1; 2262static int IBinaryFloatParseAndFormatInfo<float>.OverflowDecimalExponent => (MaxExponent + (2 * SignificandLength)) / 3; 2265static ushort IBinaryFloatParseAndFormatInfo<float>.NormalMantissaBits => SignificandLength;