Lines Matching refs:Emax
193 self.p.Emax = self.c.Emax
220 assert(self.c.Emax == self.p.Emax)
221 return self.c.Emax
224 self.c.Emax = val
225 self.p.Emax = val
253 Emax = property(getemax, setemax) variable in Context
292 context.Emax = C.MAX_EMAX
300 Emax=C.MAX_EMAX,
370 self.maxcontext.Emax = C.MAX_EMAX
391 self.maxctx = P.Context(Emax=10**18, Emin=-10**18)
436 x = _dec_from_triple(exact._sign, '10', context.p.Emax)
439 y = _dec_from_triple(rounded._sign, '10', context.p.Emax)
940 context.Emax = random.randrange(prec, 1000)
942 context.Emin, context.Emax = emin, emax
943 if prec > context.Emax: continue
945 (context.prec, context.Emin, context.Emax))
946 restr_range = 9999 if context.Emax > 9999 else context.Emax+99
954 exprange = context.c.Emax
1095 c.Emax = random.randrange(1, exprange+1)
1097 maxprec = 100 if c.Emax >= 100 else c.Emax