Lines Matching full:nmin
1787 /* (including Nmin), otherwise let all status through */
3514 /* returns 1 if |dn| is finite and >=Nmin, 0 otherwise */
3534 /* returns 1 if |dn| is finite, non-zero, and <Nmin, 0 otherwise */
7284 /* round as the result could be rounded to Nmin or 0. */
7287 decNumber nmin;
7288 /* A very nasty case here is dn == Nmin and residue<0 */
7294 /* Equals case: only subnormal if dn=Nmin and negative residue */
7295 uprv_decNumberZero(&nmin);
7296 nmin.lsu[0]=1;
7297 nmin.exponent=set->emin;
7298 comp=decCompare(dn, &nmin, 1); /* (signless compare) */
7303 if (*residue<0 && comp==0) { /* neg residue and dn==Nmin */
7465 /* residue can never be non-zero here, except in the Nmin-residue */