Home | History | Annotate | Download | only in i18n

Lines Matching full:maxp

2800 /* const maxp := currentprecision + 2                                 */
2802 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
2805 /* exit when p = maxp */
2835 Int maxp; /* largest working precision */
2850 /* buffer for a [needs +2 to match likely maxp] */
2922 maxp=workp+2; /* largest working precision */
2932 /* a and b both need to be able to hold a maxp-length number */
2933 needbytes=sizeof(decNumber)+(D2U(maxp)-1)*sizeof(Unit);
3005 for (; workset.digits<maxp;) {
3006 /* set p to min(2*p - 2, maxp) [hence 3; or: 4, 6, 10, ... , maxp] */
3007 workset.digits=MINI(workset.digits*2-2, maxp);
3015 /* Here, 0.1 <= a < 1 [Hull], and a has maxp digits */
3044 /* Here workset.digits=maxp and t=0.5, and a->digits determines */
3046 workset.digits--; /* maxp-1 is OK now */