Lines Matching full:dcmul
1128 decContext dcmul; /* context for the multiplication */
1151 dcmul=*set;
1152 dcmul.digits=lhs->digits+rhs->digits; /* just enough */
1154 dcmul.emax=DEC_MAX_EMAX; /* effectively unbounded .. */
1155 dcmul.emin=DEC_MIN_EMIN; /* [thanks to Math restrictions] */
1158 needbytes=sizeof(decNumber)+(D2U(dcmul.digits)-1)*sizeof(Unit);
1167 /*printf("emin=%ld\n", dcmul.emin); */
1168 decMultiplyOp(acc, lhs, rhs, &dcmul, &status);