Home | History | Annotate | Download | only in i18n

Lines Matching refs:maxp

2783 /* const maxp := currentprecision + 2                                 */
2785 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
2788 /* exit when p = maxp */
2818 Int maxp; /* largest working precision */
2833 /* buffer for a [needs +2 to match likely maxp] */
2905 maxp=workp+2; /* largest working precision */
2915 /* a and b both need to be able to hold a maxp-length number */
2916 needbytes=sizeof(decNumber)+(D2U(maxp)-1)*sizeof(Unit);
2988 for (; workset.digits<maxp;) {
2989 /* set p to min(2*p - 2, maxp) [hence 3; or: 4, 6, 10, ... , maxp] */
2990 workset.digits=MINI(workset.digits*2-2, maxp);
2998 /* Here, 0.1 <= a < 1 [Hull], and a has maxp digits */
3027 /* Here workset.digits=maxp and t=0.5, and a->digits determines */
3029 workset.digits--; /* maxp-1 is OK now */