Lines Matching defs:Emax
144 # on prec, Emin and Emax.
197 self.p.Emax = self.c.Emax
224 assert(self.c.Emax == self.p.Emax)
225 return self.c.Emax
228 self.c.Emax = val
229 self.p.Emax = val
257 Emax = property(getemax, setemax)
296 context.Emax = C.MAX_EMAX
304 Emax=C.MAX_EMAX,
374 self.maxcontext.Emax = C.MAX_EMAX
395 self.maxctx = P.Context(Emax=10**18, Emin=-10**18)
440 x = _dec_from_triple(exact._sign, '10', context.p.Emax)
443 y = _dec_from_triple(rounded._sign, '10', context.p.Emax)
502 setcontext(Context(prec=21, rounding=ROUND_UP, Emin=-55, Emax=85))
944 context.Emax = random.randrange(prec, 1000)
946 context.Emin, context.Emax = emin, emax
947 if prec > context.Emax: continue
949 (context.prec, context.Emin, context.Emax))
950 restr_range = 9999 if context.Emax > 9999 else context.Emax+99
958 exprange = context.c.Emax
1099 c.Emax = random.randrange(1, exprange+1)
1101 maxprec = 100 if c.Emax >= 100 else c.Emax