maxdigits        3583 src/decNumber/decNumber.c   Int   maxdigits;                 // longest logical length
maxdigits        3783 src/decNumber/decNumber.c     maxdigits=rhs->digits+padding;      // virtual length of RHS
maxdigits        3784 src/decNumber/decNumber.c     if (lhs->digits>maxdigits) maxdigits=lhs->digits;
maxdigits        3792 src/decNumber/decNumber.c     if ((maxdigits>=reqdigits)          // is, or could be, too large
maxdigits        3796 src/decNumber/decNumber.c       Int need=D2U(maxdigits)+1;
maxdigits        3841 src/decNumber/decNumber.c         if (res->digits<maxdigits) {
maxdigits        3843 src/decNumber/decNumber.c           res->digits=maxdigits;
maxdigits        3851 src/decNumber/decNumber.c             if (res->digits<maxdigits) res->digits=maxdigits;
maxdigits        3991 src/decNumber/decNumber.c   Int   maxdigits;                 // longest LHS or required acc length
maxdigits        4166 src/decNumber/decNumber.c     maxdigits=rhs->digits+reqdigits-1;
maxdigits        4167 src/decNumber/decNumber.c     if (lhs->digits>maxdigits) maxdigits=lhs->digits;
maxdigits        4168 src/decNumber/decNumber.c     var1units=D2U(maxdigits)+2;