13 references to SignificandSize
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Number.DiyFp.cs (1)
81
return new DiyFp(ac + (ad >> 32) + (bc >> 32) + (tmp >> 32), e + other.e +
SignificandSize
);
src\libraries\System.Private.CoreLib\src\System\Number.Grisu3.cs (12)
366
int tenMkMinimalBinaryExponent = MinimalTargetExponent - (w.e + DiyFp.
SignificandSize
);
367
int tenMkMaximalBinaryExponent = MaximalTargetExponent - (w.e + DiyFp.
SignificandSize
);
371
Debug.Assert(MinimalTargetExponent <= (w.e + tenMk.e + DiyFp.
SignificandSize
));
372
Debug.Assert(MaximalTargetExponent >= (w.e + tenMk.e + DiyFp.
SignificandSize
));
418
int tenMkMinimalBinaryExponent = MinimalTargetExponent - (w.e + DiyFp.
SignificandSize
);
419
int tenMkMaximalBinaryExponent = MaximalTargetExponent - (w.e + DiyFp.
SignificandSize
);
423
Debug.Assert(MinimalTargetExponent <= (w.e + tenMk.e + DiyFp.
SignificandSize
));
424
Debug.Assert(MaximalTargetExponent >= (w.e + tenMk.e + DiyFp.
SignificandSize
));
437
Debug.Assert(scaledW.e == (boundaryPlus.e + tenMk.e + DiyFp.
SignificandSize
));
550
uint divisor = BiggestPowerTen(integrals, DiyFp.
SignificandSize
- (-one.e), out kappa);
729
uint divisor = BiggestPowerTen(integrals, DiyFp.
SignificandSize
- (-one.e), out kappa);
823
double k = Math.Ceiling((minExponent + DiyFp.
SignificandSize
- 1) * D1Log210);