Home | History | Annotate | Download | only in i18n

Lines Matching defs:ilength

7589   Int  ilength=dn->digits+dn->exponent; /* integral length  */
7637 if (ilength<11) {
7640 for (; got<ilength; up++) {
7644 if (ilength==10) { /* need to check for wrap */
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 */
7653 if (ilength>10) { /* too big */