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