theInt 7245 src/decNumber/decNumber.c Int theInt; // result accumulator theInt 7262 src/decNumber/decNumber.c theInt=0; // ready to accumulate theInt 7279 src/decNumber/decNumber.c theInt=QUOT10(*up, count); theInt 7280 src/decNumber/decNumber.c rem=*up-theInt*powers[count]; theInt 7283 src/decNumber/decNumber.c theInt=*up/powers[count]; theInt 7294 src/decNumber/decNumber.c if (got==0) {theInt=*up; got+=DECDPUN; up++;} // ensure lsu is there theInt 7297 src/decNumber/decNumber.c Int save=theInt; theInt 7300 src/decNumber/decNumber.c theInt+=*up*powers[got]; theInt 7304 src/decNumber/decNumber.c if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11; theInt 7306 src/decNumber/decNumber.c else if (neg && theInt>1999999997) ilength=11; theInt 7307 src/decNumber/decNumber.c else if (!neg && theInt>999999999) ilength=11; theInt 7308 src/decNumber/decNumber.c if (ilength==11) theInt=save; // restore correct low bit theInt 7313 src/decNumber/decNumber.c if (theInt&1) return BIGODD; // bottom bit 1 theInt 7317 src/decNumber/decNumber.c if (neg) theInt=-theInt; // apply sign theInt 7318 src/decNumber/decNumber.c return theInt;