Lines Matching refs:Emax
176 self.p.Emax = self.c.Emax
203 assert(self.c.Emax == self.p.Emax)
204 return self.c.Emax
207 self.c.Emax = val
208 self.p.Emax = val
236 Emax = property(getemax, setemax) variable in Context
275 context.Emax = C.MAX_EMAX
283 Emax=C.MAX_EMAX,
360 self.maxctx = P.Context(Emax=10**18, Emin=-10**18)
405 x = _dec_from_triple(exact._sign, '10', context.p.Emax)
408 y = _dec_from_triple(rounded._sign, '10', context.p.Emax)
796 context.Emax = random.randrange(prec, 1000)
798 context.Emin, context.Emax = emin, emax
799 if prec > context.Emax: continue
801 (context.prec, context.Emin, context.Emax))
802 restr_range = 9999 if context.Emax > 9999 else context.Emax+99
810 exprange = context.c.Emax
951 c.Emax = random.randrange(1, exprange+1)
953 maxprec = 100 if c.Emax >= 100 else c.Emax