Lines Matching refs:theInt
7586 Int theInt; /* result accumulator */ local
7603 theInt=0; /* ready to accumulate */
7620 theInt=QUOT10(*up, count);
7621 rem=*up-theInt*powers[count];
7624 theInt=*up/powers[count];
7635 if (got==0) {theInt=*up; got+=DECDPUN; up++;} /* ensure lsu is there */
7638 Int save=theInt;
7641 theInt+=*up*powers[got];
7645 if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
7647 else if (neg && theInt>1999999997) ilength=11;
7648 else if (!neg && theInt>999999999) ilength=11;
7649 if (ilength==11) theInt=save; /* restore correct low bit */
7654 if (theInt&1) return BIGODD; /* bottom bit 1 */
7658 if (neg) theInt=-theInt; /* apply sign */
7659 return theInt;