Lines Matching refs:rmax
811 t.rmax = getattr(t.maxcontext, t.funcname)(*maxargs)
817 t.rmax = getattr(maxself, t.funcname)(*maxargs)
822 t.rmax = None
840 t.maxresults.append(str(t.rmax))
853 if t.with_maxcontext and isinstance(t.rmax, C.Decimal):
854 t.maxresults.append(t.rmax.to_eng_string())
855 t.maxresults.append(t.rmax.as_tuple())
856 t.maxresults.append(str(t.rmax.imag))
857 t.maxresults.append(str(t.rmax.real))
866 if t.with_maxcontext and not isinstance(t.rmax, tuple):
867 if t.rmax != t.rc:
883 if all_nan(t.rc) and all_nan(t.rmax):