Home | History | Annotate | Download | only in i18n

Lines Matching defs:maxp

2776 /* const maxp := currentprecision + 2                                 */
2778 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
2781 /* exit when p = maxp */
2807 Int maxp; /* largest working precision */
2822 /* buffer for a [needs +2 to match likely maxp] */
2894 maxp=workp+2; /* largest working precision */
2904 /* a and b both need to be able to hold a maxp-length number */
2905 needbytes=sizeof(decNumber)+(D2U(maxp)-1)*sizeof(Unit);
2977 for (; workset.digits<maxp;) {
2978 /* set p to min(2*p - 2, maxp) [hence 3; or: 4, 6, 10, ... , maxp] */
2979 workset.digits=MINI(workset.digits*2-2, maxp);
2987 /* Here, 0.1 <= a < 1 [Hull], and a has maxp digits */
3016 /* Here workset.digits=maxp and t=0.5, and a->digits determines */
3018 workset.digits--; /* maxp-1 is OK now */