Home | History | Annotate | Download | only in i18n

Lines Matching refs:theInt

7584   Int  theInt;                          /* result accumulator  */
7601 theInt=0; /* ready to accumulate */
7618 theInt=QUOT10(*up, count);
7619 rem=*up-theInt*powers[count];
7622 theInt=*up/powers[count];
7633 if (got==0) {theInt=*up; got+=DECDPUN; up++;} /* ensure lsu is there */
7636 Int save=theInt;
7639 theInt+=*up*powers[got];
7643 if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
7645 else if (neg && theInt>1999999997) ilength=11;
7646 else if (!neg && theInt>999999999) ilength=11;
7647 if (ilength==11) theInt=save; /* restore correct low bit */
7652 if (theInt&1) return BIGODD; /* bottom bit 1 */
7656 if (neg) theInt=-theInt; /* apply sign */
7657 return theInt;