maxdigits 3600 src/decNumber/decNumber.c Int maxdigits; // longest logical length maxdigits 3800 src/decNumber/decNumber.c maxdigits=rhs->digits+padding; // virtual length of RHS maxdigits 3801 src/decNumber/decNumber.c if (lhs->digits>maxdigits) maxdigits=lhs->digits; maxdigits 3809 src/decNumber/decNumber.c if ((maxdigits>=reqdigits) // is, or could be, too large maxdigits 3813 src/decNumber/decNumber.c Int need=D2U(maxdigits)+1; maxdigits 3859 src/decNumber/decNumber.c if (res->digits<maxdigits) { maxdigits 3861 src/decNumber/decNumber.c res->digits=maxdigits; maxdigits 3869 src/decNumber/decNumber.c if (res->digits<maxdigits) res->digits=maxdigits; maxdigits 4009 src/decNumber/decNumber.c Int maxdigits; // longest LHS or required acc length maxdigits 4185 src/decNumber/decNumber.c maxdigits=rhs->digits+reqdigits-1; maxdigits 4186 src/decNumber/decNumber.c if (lhs->digits>maxdigits) maxdigits=lhs->digits; maxdigits 4187 src/decNumber/decNumber.c var1units=D2U(maxdigits)+2;