Home | History | Annotate | Download | only in i18n

Lines Matching refs:ilength

7546   Int  ilength=dn->digits+dn->exponent; /* integral length  */
7594 if (ilength<11) {
7597 for (; got<ilength; up++) {
7601 if (ilength==10) { /* need to check for wrap */
7602 if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
7604 else if (neg && theInt>1999999997) ilength=11;
7605 else if (!neg && theInt>999999999) ilength=11;
7606 if (ilength==11) theInt=save; /* restore correct low bit */
7610 if (ilength>10) { /* too big */