accunits         3975 src/decNumber/decNumber.c   Int   accunits;                  // count of units accumulated
accunits         4244 src/decNumber/decNumber.c     accunits=0;                         // no units accumulated yet
accunits         4304 src/decNumber/decNumber.c       if (accunits!=0 || thisunit!=0) {      // is first or non-zero
accunits         4307 src/decNumber/decNumber.c         if (accunits==0) {
accunits         4312 src/decNumber/decNumber.c         accunits++;                          // update count
accunits         4342 src/decNumber/decNumber.c     if (accunits==0) {             // acc is 0
accunits         4343 src/decNumber/decNumber.c       accunits=1;                  // show have a unit ..
accunits         4375 src/decNumber/decNumber.c             accunits=decShiftToLeast(accnext, accunits, drop);
accunits         4376 src/decNumber/decNumber.c             accdigits=decGetDigits(accnext, accunits);
accunits         4377 src/decNumber/decNumber.c             accunits=D2U(accdigits);
accunits         4378 src/decNumber/decNumber.c             (void)accunits;
accunits         4432 src/decNumber/decNumber.c         accunits=D2U(accdigits);
accunits         4446 src/decNumber/decNumber.c           tarunits=decUnitAddSub(accnext, accunits, accnext, accunits,
accunits         4500 src/decNumber/decNumber.c             accunits=-decUnitAddSub(accnext, accunits,
accunits         4503 src/decNumber/decNumber.c             accdigits=decGetDigits(accnext, accunits); // count digits exactly
accunits         4504 src/decNumber/decNumber.c             accunits=D2U(accdigits);    // and recalculate the units for copy
accunits         4505 src/decNumber/decNumber.c             (void)accunits;
accunits         4577 src/decNumber/decNumber.c   Int    accunits;                 // Units of accumulator in use
accunits         4800 src/decNumber/decNumber.c       accunits=up-acc;                       // count of units
accunits         4819 src/decNumber/decNumber.c       accunits=1;                  // accumulator starts at '0'
accunits         4828 src/decNumber/decNumber.c         if (*mer!=0) accunits=decUnitAddSub(&acc[shift], accunits-shift,
accunits         4833 src/decNumber/decNumber.c           *(acc+accunits)=0;       // [this avoids length of <=0 later]
accunits         4834 src/decNumber/decNumber.c           accunits++;
accunits         4848 src/decNumber/decNumber.c     res->digits=decGetDigits(acc, accunits); // count digits exactly
accunits         5942 src/decNumber/decNumber.c   Int   accunits, need;            // units in use or needed for acc
accunits         5980 src/decNumber/decNumber.c   accunits=decUnitAddSub(a, alength, b, blength, expunits, acc,
accunits         5983 src/decNumber/decNumber.c   if (accunits<0) result=-1;            // negative result
accunits         5986 src/decNumber/decNumber.c     for (u=acc; u<acc+accunits-1 && *u==0;) u++;