Home | History | Annotate | Download | only in i18n

Lines Matching defs:nmin

1809         /* (including Nmin), otherwise let all status through  */
3543 /* returns 1 if |dn| is finite and >=Nmin, 0 otherwise */
3563 /* returns 1 if |dn| is finite, non-zero, and <Nmin, 0 otherwise */
7327 /* round as the result could be rounded to Nmin or 0. */
7330 decNumber nmin;
7331 /* A very nasty case here is dn == Nmin and residue<0 */
7337 /* Equals case: only subnormal if dn=Nmin and negative residue */
7338 uprv_decNumberZero(&nmin);
7339 nmin.lsu[0]=1;
7340 nmin.exponent=set->emin;
7341 comp=decCompare(dn, &nmin, 1); /* (signless compare) */
7346 if (*residue<0 && comp==0) { /* neg residue and dn==Nmin */
7508 /* residue can never be non-zero here, except in the Nmin-residue */