Searched refs:args (Results 76 - 100 of 204) sorted by relevance

123456789

/gem5/util/dist/
H A Dgem5-dist.sh75 echo "Usage:$0 [-debug] [-n nnodes] [-r rundir] [-c ckptdir] [-p port] [-sw switch] [--sw-args sw_args] [-fs fullsystem] [--fs-args fs_args] [--cf-args conf_args] [--m5-args m5_args] -x gem5_exe "
124 x--sw-args)
132 x--fs-args)
136 x--cf-args)
140 x--m5-args)
273 xterm -e "gdb --args $MY_ARGS" &
301 # env args t
[all...]
/gem5/ext/pybind11/tools/
H A Dmkdoc.py235 def read_args(args):
238 if "-x" not in args:
240 if not any(it.startswith("-std=") for it in args):
271 for item in args:
278 raise NoFilenamesError("args parameter did not contain any filenames")
283 def extract_all(args):
284 parameters, filenames = read_args(args)
343 def mkdoc(args):
344 args = list(args)
[all...]
/gem5/ext/ply/ply/
H A Dcpp.py311 # must be enclosed in parenthesis. Returns a tuple (tokencount,args,positions)
312 # where tokencount is the number of tokens consumed, args is a list of arguments,
324 args = []
352 args.append(self.tokenstrip(current_arg))
354 return i+1,args,positions
357 args.append(self.tokenstrip(current_arg))
419 def macro_expand_args(self,macro,args):
428 str_expansion[argnum] = ('"%s"' % "".join([x.value for x in args[argnum]])).replace("\\","\\\\")
434 if macro.variadic and not args[-1]:
447 rep[i:i+1] = args[argnu
[all...]
/gem5/ext/testlib/
H A Dterminal.py68 def null_cap_string(s, *args):
74 def cap_string(s, *args):
77 return curses.tparm(cap, *args)
H A Dsandbox.py44 def interaction(self, *args, **kwargs):
49 pdb._Pdb.interaction(self, *args, **kwargs)
114 args=(self.stdout_rp,
119 args=(self.stderr_rp,
148 def __init__(self, *args, **kwargs):
149 multiprocessing.Process.__init__(self, *args, **kwargs)
/gem5/ext/dsent/
H A Dinterface.cc99 dsent_finalize(PyObject *self, PyObject *args) argument
109 dsent_computeRouterPowerAndArea(PyObject *self, PyObject *args) argument
128 if (!PyArg_ParseTuple(args, "KIIIIII", &frequency, &num_in_port,
211 dsent_printAvailableModels(PyObject* self, PyObject *args) argument
/gem5/ext/sst/
H A Dgem5.hh75 void splitCommandArgs(std::string &cmd, std::vector<char*> &args);
/gem5/src/base/
H A Dlogging.hh108 print(const Loc &loc, const char *format, const Args &...args) argument
111 ccprintf(ss, format, args...);
116 print(const Loc &loc, const std::string &format, const Args &...args) argument
118 print(loc, format.c_str(), args...);
/gem5/ext/pybind11/tests/
H A Dlocal_bindings.h47 py::class_<T> bind_local(Args && ...args) { argument
48 return py::class_<T>(std::forward<Args>(args)...)
H A Dtest_exceptions.cpp186 m.def("try_catch", [m](py::object exc_type, py::function f, py::args args) {
187 try { f(*args); }
/gem5/configs/example/
H A Detrace_replay.py63 (options, args) = parser.parse_args()
65 if args:
H A Druby_direct_test.py68 (options, args) = parser.parse_args()
70 if args:
/gem5/util/
H A Dgit-pre-commit.py57 args = parser.parse_args() variable
70 if args.verbose:
H A Dcpt_upgrader.py82 def verboseprint(*args):
85 for arg in args:
279 (options, args) = parser.parse_args()
294 elif len(args) != 1:
299 path = osp.expandvars(osp.expanduser(args[0]))
H A Dgen_arm_fs_files.py78 (options, args) = parser.parse_args()
80 if args:
81 print "Unrecognized argument(s) %s." % args
/gem5/util/batch/
H A Dbatch.py113 def build(self, script, args = []):
116 print "args:", args
132 self.cmd.extend(args)
178 def build(self, script, args = []):
232 self.cmd.extend(args)
/gem5/src/python/m5/
H A Dparams.py78 def isSimObject(*args, **kwargs):
80 return SimObject.isSimObject(*args, **kwargs)
82 def isSimObjectSequence(*args, **kwargs):
84 return SimObject.isSimObjectSequence(*args, **kwargs)
86 def isSimObjectClass(*args, **kwargs):
88 return SimObject.isSimObjectClass(*args, **kwargs)
151 def __init__(self, ptype_str, ptype, *args, **kwargs):
157 if args:
158 if len(args) == 1:
159 self.desc = args[
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-death-test.cc888 ::std::vector<testing::internal::string> args = GetInjectableArgvs(); local
892 args.insert(args.end(), extra_args.begin(), extra_args.end());
894 return args;
961 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local
962 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd));
981 execve(args->argv[0], args->argv, GetEnviron());
982 DeathTestAbort(std::string("execve(") + args->argv[0] + ", ...) in " +
1021 ExecDeathTestArgs args local
1144 Arguments args; local
[all...]
/gem5/src/systemc/ext/core/
H A Dsc_spawn.hh200 auto sc_bind(F &&f, Args && ...args) ->
201 decltype(std::bind(std::forward<F>(f), std::forward<Args>(args)...))
203 return std::bind(std::forward<F>(f), std::forward<Args>(args)...);
/gem5/ext/mcpat/regression/
H A Dregression.py157 (options, args) = optionsparser.parse_args()
173 if len(args) < 1:
178 rootdir = args[0];
/gem5/ext/pybind11/include/pybind11/
H A Dattr.h86 m.def("foo", [](args...) {
88 return foo(args...); // forwarded arguments
149 std::vector<argument_record> args; member in struct:function_record
175 /// True if the function has a '*args' argument
184 /// Number of arguments (including py::args and/or py::kwargs, if present)
287 args.reserve(f.nargs);
359 if (r->is_method && r->args.empty())
360 r->args.emplace_back("self", nullptr, handle(), true /*convert*/, false /*none not allowed*/);
361 r->args.emplace_back(a.name, nullptr, handle(), !a.flag_noconvert, a.flag_none);
368 if (r->is_method && r->args
459 init(const Args&.... args, function_record *r) argument
463 init(const Args&.... args, type_record *r) argument
[all...]
/gem5/ext/pybind11/include/pybind11/detail/
H A Ddescr.h89 constexpr auto concat(const descr<N, Ts...> &d, const Args &...args)
90 -> decltype(std::declval<descr<N + 2, Ts...>>() + concat(args...)) {
91 return d + _(", ") + concat(args...);
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py118 def __init__(self, url, code, msg, headers, args):
120 self.args = args
121 self.reason = args["Error"]
226 args = {"continue": continue_location, "auth": auth_token}
228 (self.host, urllib.urlencode(args)))
319 args = dict(kwargs)
321 if args:
322 url += "?" + urllib.urlencode(args)
599 def GenerateDiff(self, args)
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py118 def __init__(self, url, code, msg, headers, args):
120 self.args = args
121 self.reason = args["Error"]
226 args = {"continue": continue_location, "auth": auth_token}
228 (self.host, urllib.urlencode(args)))
319 args = dict(kwargs)
321 if args:
322 url += "?" + urllib.urlencode(args)
599 def GenerateDiff(self, args)
[all...]
/gem5/tests/gem5/
H A Dfixture.py102 def __init__(self, *args, **kwargs):
107 self._init(*args, **kwargs)
185 def __init__(self, directory, *args, **kwargs):
189 *args, **kwargs)
202 def __init__(self, target, make_fixture=None, *args, **kwargs):
209 super(MakeTarget, self).__init__(name=target, *args, **kwargs)

Completed in 38 milliseconds

123456789