Searched refs:name (Results 101 - 125 of 1016) sorted by relevance

1234567891011>>

/gem5/tests/gem5/learning_gem5/
H A Dpart2_test.py11 # neither the name of the copyright holders nor the names of its
36 name='run_simple_test', variable
44 name='hello_goodbye_test', variable
52 name='simple_memobj_test', variable
60 name='simple_cache_test', variable
H A Dpart3_test.py11 # neither the name of the copyright holders nor the names of its
39 name='simple_ruby_test', variable
48 name='ruby_test_test', variable
/gem5/src/sim/probe/
H A Dprobe.hh21 * neither the name of the copyright holders nor the names of its
80 * should live in this name space. This makes it possible to use a
122 ProbeListener(ProbeManager *manager, const std::string &name);
127 const std::string name; member in class:ProbeListener
138 const std::string name; member in class:ProbePoint
140 ProbePoint(ProbeManager *manager, const std::string &name);
145 std::string getName() const { return name; }
157 /** Vector for name look-up. */
168 * If the name doesn't resolve a ProbePoint return false.
169 * @param pointName the name o
203 ProbeListenerArgBase(ProbeManager *pm, const std::string &name) argument
229 ProbeListenerArg(T *obj, const std::string &name, void (T::* func)(const Arg &)) argument
257 ProbePointArg(ProbeManager *manager, std::string name) argument
[all...]
/gem5/src/python/m5/
H A Dconfig.py11 # neither the name of the copyright holders nor the names of its
42 def get(name):
45 conffile = joinpath(confdir, name)
/gem5/src/mem/ruby/network/simple/
H A DSimpleLink.cc12 * neither the name of the copyright holders nor the names of its
44 out << name();
66 out << name();
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_event_finder.cpp48 add_msg, m_port.name(), m_port.kind() );
50 std::sprintf( msg, "port '%s' (%s)", m_port.name(), m_port.kind() );
H A Dsc_signal_resolved_ports.cpp54 std::sprintf( msg, "%s (%s)", name(), kind() );
75 std::sprintf( msg, "%s (%s)", name(), kind() );
/gem5/src/systemc/channel/
H A Dsc_mutex.cc11 * neither the name of the copyright holders nor the names of its
41 sc_mutex::sc_mutex(const char *name) : argument
42 sc_interface(), sc_mutex_if(), sc_object(name)
/gem5/src/systemc/ext/channel/
H A Dsc_fifo_in.hh11 * neither the name of the copyright holders nor the names of its
50 explicit sc_fifo_in(const char *name) : argument
51 sc_port<sc_fifo_in_if<T>, 0>(name),
61 sc_fifo_in(const char *name, const sc_fifo_in_if<T> &interface) : argument
62 sc_port<sc_fifo_in_if<T>, 0>(name, interface),
69 sc_fifo_in(const char *name, sc_port_b<sc_fifo_in_if<T> > &parent) : argument
70 sc_port<sc_fifo_in_if<T>, 0>(name, parent),
77 sc_fifo_in(const char *name, sc_port<sc_fifo_in_if<T>, 0> &parent) : argument
78 sc_port<sc_fifo_in_if<T>, 0>(name, parent),
H A Dsc_fifo_out.hh11 * neither the name of the copyright holders nor the names of its
49 explicit sc_fifo_out(const char *name) : argument
50 sc_port<sc_fifo_out_if<T>, 0>(name),
60 sc_fifo_out(const char *name, const sc_fifo_out_if<T> &interface) : argument
61 sc_port<sc_fifo_out_if<T>, 0>(name, interface),
68 sc_fifo_out(const char *name, sc_port_b<sc_fifo_out_if<T> > &parent) : argument
69 sc_port<sc_fifo_out_if<T>, 0>(name, parent),
76 sc_fifo_out(const char *name, sc_port<sc_fifo_out_if<T>, 0> &parent) : argument
77 sc_port<sc_fifo_out_if<T>, 0>(name, parent),
/gem5/src/systemc/tests/systemc/misc/stars/star125412/
H A Dtest.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
59 top(sc_module_name name) : sc_module(name) argument
/gem5/util/systemc/systemc_within_gem5/systemc_simple_object/
H A Dprinter.hh11 * neither the name of the copyright holders nor the names of its
66 // DPRINTFN works as expected here because sc_objects have a name()
67 // method which DPRINTFN relies on. Normally name() would come from
84 .name(std::string(name()) + ".numWords")
/gem5/ext/googletest/googletest/xcode/Samples/FrameworkSample/
H A Dwidget.cc14 // * Neither the name of Google Inc. nor the names of its
40 Widget::Widget(int number, const std::string& name) argument
42 name_(name) {}
/gem5/src/kern/
H A Dkernel_stats.hh12 * neither the name of the copyright holders nor the names of its
55 const std::string name() const { return myname; } function in class:Kernel::Statistics
56 virtual void regStats(const std::string &name);
/gem5/src/sim/
H A Dsim_object.cc13 * neither the name of the copyright holders nor the names of its
83 if (cp.sectionExists(name())) {
85 // This works despite name() returning a fully qualified name
87 unserializeSection(cp, name());
128 fatal("%s does not have any port named %s\n", name(), if_name);
142 // This works despite name() returning a fully qualified name
144 obj->serializeSection(cp, obj->name());
162 obj->doDebugBreak = match.match(obj->name());
174 find(const char *name) argument
[all...]
/gem5/src/kern/linux/
H A Devents.cc24 * neither the name of the copyright holders nor the names of its
70 StringWrap name(tc->getSystemPtr()->name() + ".dprintk");
104 StringWrap name(tc->getCpuPtr()->name() + ".dmesg_dump_event");
117 StringWrap name(tc->getCpuPtr()->name() + ".dmesg_dump_event");
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_attribute.cpp56 // get the name
58 sc_attr_base::name() const function in class:sc_core::sc_attr_base
89 // returns 'true' if the name of the attribute is unique,
99 if( attribute_->name() == m_cltn[i]->name() ) {
108 // get attribute by name.
109 // returns pointer to attribute, or 0 if name does not exist.
115 if( name_ == m_cltn[i]->name() ) {
126 if( name_ == m_cltn[i]->name() ) {
134 // remove attribute by name
[all...]
H A Dsc_object_manager.h71 sc_event* find_event(const char* name);
73 sc_object* find_object(const char* name);
89 void insert_event(const std::string& name, sc_event* obj);
90 void insert_object(const std::string& name, sc_object* obj);
91 void remove_event(const std::string& name);
92 void remove_object(const std::string& name);
/gem5/src/arch/alpha/
H A Dkernel_stats.cc12 * neither the name of the copyright holders nor the names of its
67 .name(name() + ".callpal")
73 const char *str = PAL::name(i);
79 .name(name() + ".inst.hwrei")
85 .name(name() + ".mode_switch")
94 .name(name()
[all...]
/gem5/ext/pybind11/tests/
H A Dpybind11_tests.h6 # pragma warning(disable: 4503) // warning C4503: decorated name length exceeded, name was truncated
20 #define TEST_SUBMODULE(name, variable) \
21 void test_submodule_##name(py::module &); \
22 test_initializer name(#name, test_submodule_##name); \
23 void test_submodule_##name(py::module &variable)
/gem5/src/systemc/tests/systemc/utils/sc_vector/test04/
H A Dtest04.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
59 mesh_node* operator()(const char * name, size_t idx ) argument
61 return new mesh_node( name, x, idx );
70 row_type* operator()( const char* name, size_t idx ) argument
72 return new row_type( name, cols_, node_creator(idx) );
84 std::cout << name() << " created @ "
102 cout << dut.nodes[i][j].name() << " - "
/gem5/src/base/
H A Dbitunion.hh12 * neither the name of the copyright holders nor the names of its
297 #define __BitUnion(type, name) \
298 class BitfieldUnderlyingClasses##name : \
305 BitfieldUnderlyingClasses##name> >; \
307 BitfieldUnderlyingClasses##name>; \
313 //followed by a typedef which makes "name" refer to a BitfieldOperator
316 #define EndBitUnion(name) \
320 BitfieldUnderlyingClasses##name> name;
327 #define __SubBitUnion(name, fieldTyp
[all...]
/gem5/src/mem/cache/tags/
H A Dbase.cc24 * neither the name of the copyright holders nor the names of its
212 .name(name() + ".tagsinuse")
217 .name(name() + ".total_refs")
222 .name(name() + ".sampled_refs")
227 .name(name() + ".avg_refs")
234 .name(nam
[all...]
/gem5/src/systemc/core/
H A Dprocess_types.hh11 * neither the name of the copyright holders nor the names of its
42 Method(const char *name, ProcessFuncWrapper *func, bool internal=false) : argument
43 Process(name, func, internal)
58 Thread(const char *name, ProcessFuncWrapper *func, bool internal=false) : argument
59 Process(name, func, internal), ctx(nullptr)
112 CThread(const char *name, ProcessFuncWrapper *func, bool internal=false) : argument
113 Thread(name, func, internal)
/gem5/util/
H A Doprofile-top.py13 # neither the name of the copyright holders nor the names of its
41 name = sym
43 name = app
45 if categories.has_key(name):
46 return categories[name]
48 if regexp.match(name):
50 print "no match for symbol %s" % name

Completed in 24 milliseconds

1234567891011>>