Home | History | Annotate | Download | only in i18n

Lines Matching refs:DEC_MAX_MATH

65 /*    DEC_MAX_MATH (999999), and their operand(s) must be within      */
1481 aset.emax=DEC_MAX_MATH; /* usual bounds */
1482 aset.emin=-DEC_MAX_MATH; /* .. */
2100 aset.emax=DEC_MAX_MATH; /* usual bounds */
2101 aset.emin=-DEC_MAX_MATH; /* .. */
5163 /* 2*DEC_MAX_MATH (1999998), and the rhs must be within these */
5546 /* DEC_MAX_MATH+11 (1000010), and the rhs must be within these */
5730 bset.emax=DEC_MAX_MATH*2; /* use double bounds for the */
5731 bset.emin=-DEC_MAX_MATH*2; /* adjustment calculation */
7510 /* DEC_MAX_MATH (999999), and A must be within these bounds if */
7517 if (set->digits>DEC_MAX_MATH
7518 || set->emax>DEC_MAX_MATH
7519 || -set->emin>DEC_MAX_MATH) *status|=DEC_Invalid_context;
7520 else if ((rhs->digits>DEC_MAX_MATH
7521 || rhs->exponent+rhs->digits>DEC_MAX_MATH+1
7522 || rhs->exponent+rhs->digits<2*(1-DEC_MAX_MATH))