7 references to SignificandLength
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Double.cs (5)
1531if ((expDiff <= (SignificandLength + 1)) && (expDiff >= (-SignificandLength - 1))) 2296static ulong IBinaryFloatParseAndFormatInfo<double>.NormalMantissaMask => (1UL << SignificandLength) - 1; 2308static int IBinaryFloatParseAndFormatInfo<double>.OverflowDecimalExponent => (MaxExponent + (2 * SignificandLength)) / 3; 2311static ushort IBinaryFloatParseAndFormatInfo<double>.NormalMantissaBits => SignificandLength;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (2)
619TVectorUInt64.GreaterThanOrEqual(expDiff, TVectorUInt64.Create(double.SignificandLength + 1)) & 620TVectorUInt64.LessThanOrEqual(expDiff, TVectorUInt64.Create(unchecked((ulong)(-double.SignificandLength - 1))))