Searched refs:emax (Results 26 - 30 of 30) sorted by relevance
12
/third_party/python/Modules/_decimal/tests/ |
H A D | deccheck.py | 941 emin, emax = expts 946 context.Emin, context.Emax = emin, emax 948 log(" prec: %d emin: %d emax: %d", 1182 # Contexts with small values for prec, emin, emax.
|
/third_party/python/Lib/test/ |
H A D | test_decimal.py | 1794 emax = C.MAX_EMAX if C else 999999999 1797 c = Context(Emax=emax, Emin=emin) 1800 c.prec = emax 1815 self.assertLessEqual(F(120984237, 9999999999), D("9e" + str(emax))) 1816 self.assertGreaterEqual(D("9e" + str(emax)), F(120984237, 9999999999)) 2961 emax = random.randrange(1, 100) 2968 prec=prec, Emin=emin, Emax=emax, 2983 self.assertEqual(d.Emax, emax) 4198 self.assertRaises(AttributeError, setattr, c, 'emax', 100) 5436 emax [all...] |
/third_party/python/Lib/ |
H A D | _pydecimal.py | 2187 # emax >= largest e such that 5**e < 10**p. 2188 emax = p*93//65 2189 if ye >= len(str(emax)): 2198 if e > emax: 2216 emax = p*10//3 2217 if ye >= len(str(emax)): 2225 if e > emax:
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mp.c | 23 static const int emax[] = { variable 80 mpfr_set_emax(emax[type]); in adjust()
|
/third_party/python/Modules/_decimal/libmpdec/ |
H A D | mpdecimal.h | 198 #define MPD_EXP_INF 1000000001L /* allows for emax=999999999 in the tests */ 244 mpd_ssize_t emax; /* max positive exp */ member 325 int mpd_qsetemax(mpd_context_t *ctx, mpd_ssize_t emax);
|
Completed in 18 milliseconds
12