Home | History | Annotate | Download | only in i18n

Lines Matching refs:nmin

1807         /* (including Nmin), otherwise let all status through  */
3541 /* returns 1 if |dn| is finite and >=Nmin, 0 otherwise */
3561 /* returns 1 if |dn| is finite, non-zero, and <Nmin, 0 otherwise */
7325 /* round as the result could be rounded to Nmin or 0. */
7328 decNumber nmin;
7329 /* A very nasty case here is dn == Nmin and residue<0 */
7335 /* Equals case: only subnormal if dn=Nmin and negative residue */
7336 uprv_decNumberZero(&nmin);
7337 nmin.lsu[0]=1;
7338 nmin.exponent=set->emin;
7339 comp=decCompare(dn, &nmin, 1); /* (signless compare) */
7344 if (*residue<0 && comp==0) { /* neg residue and dn==Nmin */
7506 /* residue can never be non-zero here, except in the Nmin-residue */