Home | History | Annotate | Download | only in i18n

Lines Matching refs:maxp

2796 /* const maxp := currentprecision + 2                                 */
2798 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
2801 /* exit when p = maxp */
2831 Int maxp; /* largest working precision */
2846 /* buffer for a [needs +2 to match likely maxp] */
2918 maxp=workp+2; /* largest working precision */
2928 /* a and b both need to be able to hold a maxp-length number */
2929 needbytes=sizeof(decNumber)+(D2U(maxp)-1)*sizeof(Unit);
3001 for (; workset.digits<maxp;) {
3002 /* set p to min(2*p - 2, maxp) [hence 3; or: 4, 6, 10, ... , maxp] */
3003 workset.digits=MINI(workset.digits*2-2, maxp);
3011 /* Here, 0.1 <= a < 1 [Hull], and a has maxp digits */
3040 /* Here workset.digits=maxp and t=0.5, and a->digits determines */
3042 workset.digits--; /* maxp-1 is OK now */