thisunit 4011 src/decNumber/decNumber.c Unit thisunit; // current unit being accumulated thisunit 4268 src/decNumber/decNumber.c thisunit=0; // current unit assumed 0 thisunit 4294 src/decNumber/decNumber.c thisunit++; // as though subtracted thisunit 4311 src/decNumber/decNumber.c thisunit=(Unit)(thisunit+mult); // accumulate thisunit 4324 src/decNumber/decNumber.c if (accunits!=0 || thisunit!=0) { // is first or non-zero thisunit 4325 src/decNumber/decNumber.c *accnext=thisunit; // store in accumulator thisunit 4329 src/decNumber/decNumber.c for (pow=&powers[1]; thisunit>=*pow; pow++) accdigits++;