Lines Matching defs:etiny
1819 mpd_ssize_t adjexp, etiny, shift;
1881 /* Underflow is impossible, since exp < etiny=emin-prec+1
1888 etiny = mpd_etiny(ctx);
1891 if (dec->exp < etiny) {
1892 dec->exp = etiny;
1900 if (dec->exp < etiny) {
1901 /* At this point adjexp=exp+digits-1 < emin and exp < etiny=emin-prec+1:
1904 shift = etiny - dec->exp;
1906 dec->exp = etiny;
1918 /* Case exp >= etiny=emin-prec+1:
4930 /* The upper bound is less than etiny: Underflow to zero */