thisunit 3993 src/decNumber/decNumber.c Unit thisunit; // current unit being accumulated thisunit 4248 src/decNumber/decNumber.c thisunit=0; // current unit assumed 0 thisunit 4274 src/decNumber/decNumber.c thisunit++; // as though subtracted thisunit 4291 src/decNumber/decNumber.c thisunit=(Unit)(thisunit+mult); // accumulate thisunit 4304 src/decNumber/decNumber.c if (accunits!=0 || thisunit!=0) { // is first or non-zero thisunit 4305 src/decNumber/decNumber.c *accnext=thisunit; // store in accumulator thisunit 4309 src/decNumber/decNumber.c for (pow=&powers[1]; thisunit>=*pow; pow++) accdigits++;