Searched refs:etiny (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Modules/_decimal/tests/ |
H A D | randdec.py | 234 # Close to etiny: 237 etiny = emin - (prec - 1) 239 str(randrange(rprec)), "E", str(etiny))) 243 etiny = emin - (prec - 1) 245 str(randrange(rprec)), "E", str(etiny-1))) 250 etiny = min_emin - (max_prec - 1) 252 str(randrange(rprec)), "E", str(etiny))) 256 etiny = min_emin - (max_prec - 1) 258 str(randrange(rprec)), "E", str(etiny-1)))
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumber.cpp | 5888 Int etiny=set->emin-(reqdigits-1); local 5935 if (!set->extended) etiny=set->emin; /* no subnormals */ 5940 || (reqexp<etiny) /* < lowest */ 7241 /* iff the number was at the subnormal boundary (exponent=etiny) */ 7243 /* clamped to etiny and the final 9 dropped. */ 7478 Int etiny, adjust; /* .. */ local 7492 etiny=set->emin-(set->digits-1); /* smallest allowed exponent */ 7502 if (dn->exponent<etiny) { /* clamp required */ 7503 dn->exponent=etiny; 7510 adjust=etiny [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumber.cpp | 5888 Int etiny=set->emin-(reqdigits-1); local 5935 if (!set->extended) etiny=set->emin; /* no subnormals */ 5940 || (reqexp<etiny) /* < lowest */ 7241 /* iff the number was at the subnormal boundary (exponent=etiny) */ 7243 /* clamped to etiny and the final 9 dropped. */ 7478 Int etiny, adjust; /* .. */ local 7492 etiny=set->emin-(set->digits-1); /* smallest allowed exponent */ 7502 if (dn->exponent<etiny) { /* clamp required */ 7503 dn->exponent=etiny; 7510 adjust=etiny [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumber.cpp | 5888 Int etiny=set->emin-(reqdigits-1); local 5935 if (!set->extended) etiny=set->emin; /* no subnormals */ 5940 || (reqexp<etiny) /* < lowest */ 7241 /* iff the number was at the subnormal boundary (exponent=etiny) */ 7243 /* clamped to etiny and the final 9 dropped. */ 7478 Int etiny, adjust; /* .. */ local 7492 etiny=set->emin-(set->digits-1); /* smallest allowed exponent */ 7502 if (dn->exponent<etiny) { /* clamp required */ 7503 dn->exponent=etiny; 7510 adjust=etiny [all...] |
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | mpdecimal.c | 1819 mpd_ssize_t adjexp, etiny, shift; in _mpd_check_exp() local 1881 /* Underflow is impossible, since exp < etiny=emin-prec+1 in _mpd_check_exp() 1888 etiny = mpd_etiny(ctx); in _mpd_check_exp() 1891 if (dec->exp < etiny) { in _mpd_check_exp() 1892 dec->exp = etiny; in _mpd_check_exp() 1900 if (dec->exp < etiny) { in _mpd_check_exp() 1901 /* At this point adjexp=exp+digits-1 < emin and exp < etiny=emin-prec+1: in _mpd_check_exp() 1904 shift = etiny - dec->exp; in _mpd_check_exp() 1906 dec->exp = etiny; in _mpd_check_exp() 1918 /* Case exp >= etiny in _mpd_check_exp() [all...] |
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 1796 etiny = C.MIN_ETINY if C else -1999999997 1803 self.assertLess(F(0,1), D("1e" + str(etiny))) 1804 self.assertLess(D("-1e" + str(etiny)), F(0,1)) 1805 self.assertLess(F(0,9999999999999999999999999), D("1e" + str(etiny))) 1806 self.assertLess(D("-1e" + str(etiny)), F(0,9999999999999999999999999))
|
H A D | test_math.py | 636 etiny = float_info.min_exp - mant_dig 658 tail = max(len(bin(abs(tmant)))-2 - mant_dig, etiny - texp)
|
Completed in 53 milliseconds