Home | History | Annotate | Download | only in i18n

Lines Matching refs:Emax

61 /*    range (Emax in the range 0 through 999,999,999 and Emin in the  */
64 /* tightly: digits, emax, and -emin in the context must be <= */
484 /* exponent (set.emax and set.emin), determining if */
712 || (dn->exponent-1>set->emax-set->digits)) {
1139 dcmul.emax=DEC_MAX_EMAX; /* effectively unbounded .. */
1330 /* same value. The exponent is not limited by emin/emax. */
1485 aset.emax=DEC_MAX_MATH; /* usual bounds */
2107 aset.emax=DEC_MAX_MATH; /* usual bounds */
2613 /* maximum magnitude 2*(emax+digits) */
2645 || abs(reqexp)>(2*(set->digits+set->emax))) /* .. or out of range */
2934 workset.emax=DEC_MAX_EMAX;
3002 approxset=*set; /* get emin, emax, etc. */
3042 approxset.emax-=exp/2;
3056 approxset.emax-=exp/2;
3093 /* there are some to drop, but emax may not allow all */
3094 Int maxexp=set->emax-set->digits+1;
3959 && rhs->exponent<=set->emax-set->digits+1 /* [could clamp] */
5176 /* digits, emax, and -emin in the context must be less than */
5331 aset.emax=set->emax; /* usual bounds */
5340 /* least 6.59E+4342944, so (due to the restriction on Emax/Emin) */
5440 tset.emin=DEC_MIN_EMIN; /* [emax is plenty] */
5559 /* digits, emax, and -emin in the context must be less than */
5743 aset.emax=set->emax;
5748 bset.emax=DEC_MAX_MATH*2; /* use double bounds for the */
5916 || (reqexp>set->emax)) { /* > emax */
5978 if (res->exponent>set->emax-res->digits+1) { /* too big */
6660 Int maxd=set->emax-set->digits+1-dn->exponent;
7189 if ((dn->exponent+dn->digits)>set->emax+1) {
7335 if (dn->exponent<=set->emax-set->digits+1) return; /* neither needed */
7339 if (dn->exponent>set->emax-dn->digits+1) { /* too big */
7347 shift=dn->exponent-(set->emax-set->digits+1);
7374 Int emax=set->emax; /* limit value */
7375 if (set->clamp) emax-=set->digits-1; /* lower if clamping */
7376 if (dn->exponent>emax) { /* clamp required */
7377 dn->exponent=emax;
7411 /* set is the context [used for digits and emax] */
7429 dn->exponent=set->emax-set->digits+1;
7530 /* digits, emax, and -emin in the context must be less than */
7539 || set->emax>DEC_MAX_MATH
7573 #error GetInt may need updating [for Emax]
7981 Int emin, emax; /* .. */
8048 /* which are out of the set->emin/set->emax and set->digits range */
8051 emax=DECNUMMAXE;
8060 if (ae>+emax) {