Home | History | Annotate | Download | only in i18n

Lines Matching refs:etiny

5884   Int   etiny=set->emin-(reqdigits-1);
5931 if (!set->extended) etiny=set->emin; /* no subnormals */
5936 || (reqexp<etiny) /* < lowest */
7237 /* iff the number was at the subnormal boundary (exponent=etiny) */
7239 /* clamped to etiny and the final 9 dropped. */
7466 /* but the exponent will be clamped to Etiny. */
7474 Int etiny, adjust; /* .. */
7487 /* (Etiny) if needed */
7488 etiny=set->emin-(set->digits-1); /* smallest allowed exponent */
7498 if (dn->exponent<etiny) { /* clamp required */
7499 dn->exponent=etiny;
7506 adjust=etiny-dn->exponent; /* calculate digits to remove */
7515 /* adjust>0, so need to rescale the result so exponent becomes Etiny */
7530 if (dn->exponent>etiny) {
7593 /* Assert, here, that 10 is enough for any rescale Etiny */