theInt           7223 src/decNumber/decNumber.c   Int  theInt;                          // result accumulator
theInt           7240 src/decNumber/decNumber.c   theInt=0;                             // ready to accumulate
theInt           7257 src/decNumber/decNumber.c       theInt=QUOT10(*up, count);
theInt           7258 src/decNumber/decNumber.c       rem=*up-theInt*powers[count];
theInt           7261 src/decNumber/decNumber.c       theInt=*up/powers[count];
theInt           7272 src/decNumber/decNumber.c   if (got==0) {theInt=*up; got+=DECDPUN; up++;} // ensure lsu is there
theInt           7275 src/decNumber/decNumber.c     Int save=theInt;
theInt           7278 src/decNumber/decNumber.c       theInt+=*up*powers[got];
theInt           7282 src/decNumber/decNumber.c       if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
theInt           7284 src/decNumber/decNumber.c        else if (neg && theInt>1999999997) ilength=11;
theInt           7285 src/decNumber/decNumber.c        else if (!neg && theInt>999999999) ilength=11;
theInt           7286 src/decNumber/decNumber.c       if (ilength==11) theInt=save;     // restore correct low bit
theInt           7291 src/decNumber/decNumber.c     if (theInt&1) return BIGODD;        // bottom bit 1
theInt           7295 src/decNumber/decNumber.c   if (neg) theInt=-theInt;              // apply sign
theInt           7296 src/decNumber/decNumber.c   return theInt;