Home
last modified time | relevance | path

Searched refs:ilength (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/libdecnumber/
H A DdecNumber.c7692 Int ilength=dn->digits+dn->exponent; /* integral length */ local
7740 if (ilength<11) {
7743 for (; got<ilength; up++) {
7747 if (ilength==10) { /* need to check for wrap */
7748 if (theInt/(Int)powers[got-DECDPUN]!=(Int)*(up-1)) ilength=11;
7750 else if (neg && theInt>1999999997) ilength=11;
7751 else if (!neg && theInt>999999999) ilength=11;
7752 if (ilength==11) theInt=save; /* restore correct low bit */
7756 if (ilength>10) { /* too big */