Searched refs:name (Results 601 - 625 of 1016) sorted by relevance

<<21222324252627282930>>

/gem5/ext/googletest/googletest/test/
H A Dgtest_help_test.py16 # * Neither the name of Google Inc. nor the names of its
47 IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux'
48 IS_WINDOWS = os.name == 'nt'
/gem5/ext/testlib/
H A Dterminal.py11 # neither the name of the copyright holders nor the names of its
87 for name, cap in capability_map.iteritems():
88 setattr(self, name, cap_string(cap))
/gem5/src/arch/arm/
H A DArmPMU.py21 # neither the name of the copyright holders nor the names of its
56 for name in self.names:
58 self.obj.getCCObject(), name)
H A Dstacktrace.hh12 * neither the name of the copyright holders nor the names of its
60 std::string name(Addr ksp) const;
/gem5/src/python/pybind11/
H A Devent.cc26 * neither the name of the copyright holders nor the names of its
119 .def("name", [](EventQueue *eq) { return eq->name(); })
158 .def("name", &Event::name)
/gem5/src/sim/
H A Deventq.hh14 * neither the name of the copyright holders nor the names of its
361 virtual const std::string name() const;
610 virtual const std::string name() const { return objName; } function in class:EventQueue
611 void name(const std::string &st) { objName = st; } function in class:EventQueue
811 name() const function in class:EventWrapper
813 return object->name() + ".wrapped_event";
827 const std::string &name,
830 : Event(p), callback(callback), _name(name)
839 name() const function in class:EventFunctionWrapper
826 EventFunctionWrapper(const std::function<void(void)> &callback, const std::string &name, bool del = false, Priority p = Default_Pri) argument
/gem5/src/systemc/ext/tlm_utils/
H A Dpassthrough_target_socket.h233 explicit passthrough_target_socket(const char *name) : socket_b(name) {} argument
246 explicit passthrough_target_socket_optional(const char *name) : argument
247 socket_b(name) {}
494 explicit passthrough_target_socket_tagged(const char *name) : argument
495 socket_b(name)
509 explicit passthrough_target_socket_tagged_optional(const char *name) : argument
510 socket_b(name)
/gem5/util/stats/
H A Dstats.py13 # neither the name of the copyright holders nor the names of its
119 if rx.match(run.name):
179 print "%s:" % stat.name
180 disp("run name", "average", "stdev", ">10%", ">1SDV", ">2SDV",
223 disp(run.name, "%.1f" % avg, "%.1f" % stdev,
228 disp(run.name, "%.1f" % avg, "%.1f" % stdev,
233 disp(run.name, "%.5f" % avg, "%.5f" % stdev,
268 output.ylabel = stat.name
270 output.graph(stat.name, options.graphdir)
272 output.display(stat.name, option
[all...]
/gem5/util/
H A Dstyle.py22 # neither the name of the copyright holders nor the names of its
128 verifiers = [ verifier_names[name] for name in args.checker ] \
/gem5/src/arch/x86/
H A Dtlb.cc21 * neither the name of the copyright holders nor the names of its
462 .name(name() + ".rdAccesses")
466 .name(name() + ".wrAccesses")
470 .name(name() + ".rdMisses")
474 .name(name() + ".wrMisses")
H A Dstacktrace.hh12 * neither the name of the copyright holders nor the names of its
59 std::string name(Addr ksp) const;
/gem5/src/mem/cache/compressors/
H A Dbase.cc12 * neither the name of the copyright holders nor the names of its
158 .name(name() + ".compression_size")
/gem5/src/mem/
H A Dxbar.hh24 * neither the name of the copyright holders nor the names of its
99 * Create a layer and give it a name. The layer uses
104 * @param _name the layer's name
119 const std::string name() const { return xbar.name() + _name; } function in class:BaseXBar::Layer
245 * Create a request layer and give it a name.
249 * @param _name the layer's name
267 * Create a response layer and give it a name.
271 * @param _name the layer's name
290 * Create a snoop response layer and give it a name
[all...]
/gem5/src/mem/ruby/system/
H A DRubyPort.cc25 * neither the name of the copyright holders nor the names of its
58 pioMasterPort(csprintf("%s.pio-master-port", name()), this),
59 pioSlavePort(csprintf("%s.pio-slave-port", name()), this),
60 memMasterPort(csprintf("%s.mem-master-port", name()), this),
61 memSlavePort(csprintf("%s-mem-slave-port", name()), this,
71 slave_ports.push_back(new MemSlavePort(csprintf("%s.slave%d", name(),
79 name(), i), this));
183 pkt->getAddr(), port->name());
459 (*i)->name());
/gem5/src/systemc/
H A Dtlm_port_wrapper.hh11 * neither the name of the copyright holders nor the names of its
70 "incompatible port %s.", name(), peer.name());
/gem5/ext/pybind11/include/pybind11/
H A Dfunctional.h96 PYBIND11_TYPE_CASTER(type, _("Callable[[") + concat(make_caster<Args>::name...) + _("], ")
97 + make_caster<retval_type>::name + _("]"));
/gem5/src/python/m5/
H A Dparams.py24 # neither the name of the copyright holders nor the names of its
93 def __new__(mcls, name, bases, dct):
94 cls = super(MetaParamValue, mcls).__new__(mcls, name, bases, dct)
95 assert name not in allParams
96 allParams[name] = cls
235 code('${{self.ptype.cxx_type}} ${{self.name}};')
273 def set_parent(self, parent, name):
275 self[0].set_parent(parent, name)
279 v.set_parent(parent, "%s%0*d" % (name, width, i))
399 code('std::vector< ${{self.ptype.cxx_type}} > ${{self.name}};')
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_class.cpp48 Pet(const std::string &name, const std::string &species) argument
49 : m_name(name), m_species(species) {}
50 std::string name() const { return m_name; } function in class:Pet
59 Dog(const std::string &name) : Pet(name, "dog") {} argument
65 Rabbit(const std::string &name) : Pet(name, "parrot") {} argument
70 Hamster(const std::string &name) : Pet(name, "rodent") {} argument
80 .def("name",
[all...]
/gem5/ext/mcpat/
H A Dinterconnect.cc15 * neither the name of the copyright holders nor the names of its
61 name = name_;
64 local_result = init_interface(&l_ip, name);
120 cout << "Warning: " << name
206 uca_org_t init_result = init_interface(&l_ip, name); // init_result is dummy
/gem5/src/arch/alpha/
H A Dstacktrace.hh12 * neither the name of the copyright holders nor the names of its
60 std::string name(Addr ksp) const;
/gem5/src/arch/mips/
H A Dstacktrace.hh12 * neither the name of the copyright holders nor the names of its
57 std::string name(Addr ksp) const;
/gem5/src/base/
H A Dcallback.hh12 * neither the name of the copyright holders nor the names of its
100 std::string name() const { return "CallbackQueue"; } function in class:CallbackQueue
/gem5/util/batch/
H A Dbatch.py11 # neither the name of the copyright holders nor the names of its
100 self.name = None
153 #self.outfile.write("%d %s\n" %(int(jobid.group(1)), self.name));
170 self.name = None
220 if self.name:
221 self.cmd.append("-N%s" % self.name)
/gem5/src/cpu/
H A Dfunc_unit.hh12 * neither the name of the copyright holders nor the names of its
96 std::string name; member in class:FuncUnit
/gem5/src/mem/slicc/ast/
H A DFormalParamAST.py12 # neither the name of the copyright holders nor the names of its
43 def name(self): member in class:FormalParamAST

Completed in 22 milliseconds

<<21222324252627282930>>