theInt 7225 src/decNumber/decNumber.c Int theInt; // result accumulator theInt 7242 src/decNumber/decNumber.c theInt=0; // ready to accumulate theInt 7259 src/decNumber/decNumber.c theInt=QUOT10(*up, count); theInt 7260 src/decNumber/decNumber.c rem=*up-theInt*powers[count]; theInt 7263 src/decNumber/decNumber.c theInt=*up/powers[count]; theInt 7274 src/decNumber/decNumber.c if (got==0) {theInt=*up; got+=DECDPUN; up++;} // ensure lsu is there theInt 7277 src/decNumber/decNumber.c Int save=theInt; theInt 7280 src/decNumber/decNumber.c theInt+=*up*powers[got]; theInt 7284 src/decNumber/decNumber.c if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11; theInt 7286 src/decNumber/decNumber.c else if (neg && theInt>1999999997) ilength=11; theInt 7287 src/decNumber/decNumber.c else if (!neg && theInt>999999999) ilength=11; theInt 7288 src/decNumber/decNumber.c if (ilength==11) theInt=save; // restore correct low bit theInt 7293 src/decNumber/decNumber.c if (theInt&1) return BIGODD; // bottom bit 1 theInt 7297 src/decNumber/decNumber.c if (neg) theInt=-theInt; // apply sign theInt 7298 src/decNumber/decNumber.c return theInt;