Searched refs:args (Results 126 - 150 of 204) sorted by relevance

123456789

/gem5/configs/example/
H A Dgarnet_synth_traffic.py91 (options, args) = parser.parse_args()
93 if args:
H A Dmemtest.py112 (options, args) = parser.parse_args()
114 if args:
H A Dmemcheck.py111 (options, args) = parser.parse_args()
113 if args:
/gem5/src/mem/slicc/symbols/
H A DSymbolTable.py53 def codeFormatter(self, *args, **kwargs):
54 return self.slicc.codeFormatter(*args, **kwargs)
/gem5/ext/pybind11/tests/
H A Dtest_callbacks.py45 def f(*args, **kwargs):
46 return args, kwargs
H A Dtest_exceptions.py126 def pycatch(exctype, f, *args):
128 f(*args)
H A Dtest_stl.cpp32 static auto call(Args &&...args) -> decltype(boost::apply_visitor(args...)) {
33 return boost::apply_visitor(args...);
H A Dtest_factory_constructors.py77 __init__(*args, **kwargs)
172 def __init__(self, *args):
173 m.TestFactory6.__init__(self, *args)
322 def create_and_destroy(*args):
323 a = m.NoisyAlloc(*args)
/gem5/util/stats/
H A Dbarchart.py301 args = sys.argv[1:] variable in class:BarChart
302 if len(args) > 3:
304 elif len(args) > 0:
305 myshape = [ int(x) for x in args ]
/gem5/tests/configs/
H A Dmemtest-ruby.py47 (options, args) = parser.parse_args()
H A Drubytest-ruby.py48 (options, args) = parser.parse_args()
H A Dgpu-randomtest-ruby.py65 (options, args) = parser.parse_args()
H A Dpc-simple-timing-ruby.py41 (options, args) = parser.parse_args()
/gem5/ext/mcpat/regression/
H A Dverify_output.py60 (options, args) = optionsparser.parse_args()
171 if len(args) < 1:
176 mcpat_output = args[0];
/gem5/util/streamline/
H A Dm5stats2streamline.py112 args = parser.parse_args() variable
114 if not re.match("(.*)\.apc", args.output_path):
121 gzipped_bmp_supported = not args.gzipped_bmp_not_supported
126 num_events = args.num_events
621 if args.verbose:
644 if args.verbose:
652 if args.verbose:
663 if args.verbose:
925 if args.verbose:
965 if args
[all...]
/gem5/src/python/m5/
H A Dmain.py218 def main(*args):
231 if len(args) == 0:
233 elif len(args) == 2:
234 options, arguments = args
236 raise TypeError("main() takes 0 or 2 arguments (%d given)" % len(args))
468 print('args:')
/gem5/util/
H A Do3-pipeview.py350 (options, args) = parser.parse_args()
351 if len(args) != 1:
364 with open(args[0], 'r') as trace:
/gem5/util/statetrace/base/
H A Dstatetrace.cc66 string args; local
/gem5/util/tap/
H A Dtap.cc72 #define DPRINTF(args...) do { \
74 printf(args); \
77 #define DDUMP(args...) do { \
79 dump((const u_char *)args); \
/gem5/ext/ply/ply/
H A Dlex.py65 self.args = (message,)
81 def critical(self,msg,*args,**kwargs):
82 self.f.write((msg % args) + "\n")
84 def warning(self,msg,*args,**kwargs):
85 self.f.write("WARNING: "+ (msg % args) + "\n")
87 def error(self,msg,*args,**kwargs):
88 self.f.write("ERROR: " + (msg % args) + "\n")
97 def __call__(self,*args,**kwargs):
/gem5/util/pbs/
H A Dpbs.py111 def build(self, script, args = []):
165 self.cmd.extend(args)
/gem5/ext/nomali/lib/
H A Dnomali_api.cc76 NoMaliApiGpu(NoMaliApi &_api, Args &&... args) argument
77 : BaseGpu(std::forward<Args>(args)...),
/gem5/ext/testlib/
H A Dlog.py182 def log(self, *args, **kwargs):
183 self.log_obj.log(*args, **kwargs)
/gem5/configs/dram/
H A Dlat_mem_rd.py95 (options, args) = parser.parse_args()
97 if args:
/gem5/configs/splash2/
H A Drun.py70 (options, args) = parser.parse_args()
72 if args:

Completed in 21 milliseconds

123456789