accunits         3993 src/decNumber/decNumber.c   Int   accunits;                  // count of units accumulated
accunits         4264 src/decNumber/decNumber.c     accunits=0;                         // no units accumulated yet
accunits         4324 src/decNumber/decNumber.c       if (accunits!=0 || thisunit!=0) {      // is first or non-zero
accunits         4327 src/decNumber/decNumber.c         if (accunits==0) {
accunits         4332 src/decNumber/decNumber.c         accunits++;                          // update count
accunits         4362 src/decNumber/decNumber.c     if (accunits==0) {             // acc is 0
accunits         4363 src/decNumber/decNumber.c       accunits=1;                  // show have a unit ..
accunits         4395 src/decNumber/decNumber.c             accunits=decShiftToLeast(accnext, accunits, drop);
accunits         4396 src/decNumber/decNumber.c             accdigits=decGetDigits(accnext, accunits);
accunits         4397 src/decNumber/decNumber.c             accunits=D2U(accdigits);
accunits         4398 src/decNumber/decNumber.c             (void)accunits;
accunits         4452 src/decNumber/decNumber.c         accunits=D2U(accdigits);
accunits         4466 src/decNumber/decNumber.c           tarunits=decUnitAddSub(accnext, accunits, accnext, accunits,
accunits         4520 src/decNumber/decNumber.c             accunits=-decUnitAddSub(accnext, accunits,
accunits         4523 src/decNumber/decNumber.c             accdigits=decGetDigits(accnext, accunits); // count digits exactly
accunits         4524 src/decNumber/decNumber.c             accunits=D2U(accdigits);    // and recalculate the units for copy
accunits         4525 src/decNumber/decNumber.c             (void)accunits;
accunits         4597 src/decNumber/decNumber.c   Int    accunits;                 // Units of accumulator in use
accunits         4820 src/decNumber/decNumber.c       accunits=up-acc;                       // count of units
accunits         4839 src/decNumber/decNumber.c       accunits=1;                  // accumulator starts at '0'
accunits         4848 src/decNumber/decNumber.c         if (*mer!=0) accunits=decUnitAddSub(&acc[shift], accunits-shift,
accunits         4853 src/decNumber/decNumber.c           *(acc+accunits)=0;       // [this avoids length of <=0 later]
accunits         4854 src/decNumber/decNumber.c           accunits++;
accunits         4868 src/decNumber/decNumber.c     res->digits=decGetDigits(acc, accunits); // count digits exactly
accunits         5962 src/decNumber/decNumber.c   Int   accunits, need;            // units in use or needed for acc
accunits         6000 src/decNumber/decNumber.c   accunits=decUnitAddSub(a, alength, b, blength, expunits, acc,
accunits         6003 src/decNumber/decNumber.c   if (accunits<0) result=-1;            // negative result
accunits         6006 src/decNumber/decNumber.c     for (u=acc; u<acc+accunits-1 && *u==0;) u++;