Home | History | Annotate | Download | only in i18n

Lines Matching full:dcmul

1126   decContext dcmul;                /* context for the multiplication  */
1149 dcmul=*set;
1150 dcmul.digits=lhs->digits+rhs->digits; /* just enough */
1152 dcmul.emax=DEC_MAX_EMAX; /* effectively unbounded .. */
1153 dcmul.emin=DEC_MIN_EMIN; /* [thanks to Math restrictions] */
1156 needbytes=sizeof(decNumber)+(D2U(dcmul.digits)-1)*sizeof(Unit);
1165 /*printf("emin=%ld\n", dcmul.emin); */
1166 decMultiplyOp(acc, lhs, rhs, &dcmul, &status);