Searched refs:name (Results 151 - 175 of 1016) sorted by relevance

1234567891011>>

/gem5/src/gpu-compute/
H A Dbrig_object.cc17 * 3. Neither the name of the copyright holder nor the names of its contributors
136 BrigObject::getKernel(const std::string &name) const
142 BrigObject::getFunction(const std::string &name) const
145 if (functions[i]->name() == name) {
175 "%d next: %d\n", getString(p->name),
184 const char *name = getString(p->name); local
189 if (functions[i]->name() == name) {
219 const char *name = getString(p->name); local
[all...]
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test04/
H A Dtest04.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
55 module1(sc_module_name name) : sc_module(name), argument
68 << sc_get_current_process_handle().name()
92 << sc_get_current_process_handle().name()
98 << sc_get_current_process_handle().name()
105 << sc_get_current_process_handle().name()
/gem5/src/systemc/tests/systemc/kernel/process_control/test06/
H A Dtest06.cpp45 std::cout << sc_get_current_process_handle().name()
59 << sc_get_current_process_handle().name()
70 std::cout << sc_get_current_process_handle().name()
75 std::cout << sc_get_current_process_handle().name()
99 std::cout << h.name() << " "
110 std::cout << sc_get_current_process_handle().name()
/gem5/ext/googletest/googletest/src/
H A Dgtest-typed-test.cc14 // * Neither the name of Google Inc. nor the names of its
72 const std::string& name = *name_it; local
73 if (tests.count(name) != 0) {
74 errors << "Test " << name << " is listed more than once.\n"; local
82 if (name == it->first) {
89 tests.insert(name);
91 errors << "No test named " << name local
/gem5/src/cpu/
H A Dactivity.hh12 * neither the name of the copyright holders nor the names of its
55 ActivityRecorder(const std::string &name, int num_stages,
103 const std::string &name() const { return _name; } function in class:ActivityRecorder
106 // provide name() for DPRINTF.
/gem5/src/mem/probes/
H A Dbase.hh21 * neither the name of the copyright holders nor the names of its
57 * instances. However, it's limited to one probe point name. This
81 ProbeManager *pm, const std::string &name)
82 : ProbeListenerArgBase(pm, name),
80 PacketListener(BaseMemProbe &_parent, ProbeManager *pm, const std::string &name) argument
H A Dmem_footprint.cc22 * neither the name of the copyright holders nor the names of its
71 fpCacheLine.name(name() + ".cacheline")
74 fpCacheLineTotal.name(name() + ".cacheline_total")
78 fpPage.name(name() + ".page")
81 fpPageTotal.name(name() + ".page_total")
/gem5/src/mem/ruby/network/garnet2.0/
H A DGarnetLink.cc13 * neither the name of the copyright holders nor the names of its
56 out << name();
87 out << name();
/gem5/src/learning_gem5/part2/
H A Dhello_object.cc12 * neither the name of the copyright holders nor the names of its
40 event([this]{ processEvent(); }, name() + ".event"),
42 // Note: This is not needed as you can *always* reference this->name()
43 myName(params->name),
/gem5/src/arch/alpha/
H A Dremote_gdb.hh13 * neither the name of the copyright holders nor the names of its
71 name() const function in class:AlphaISA::RemoteGDB::AlphaGdbRegCache
73 return gdb->name() + ".AlphaGdbRegCache";
/gem5/src/systemc/channel/
H A Dsc_out_resolved.cc11 * neither the name of the copyright holders nor the names of its
36 sc_out_resolved::sc_out_resolved(const char *name) : sc_inout_resolved(name) {} argument
/gem5/src/systemc/tests/systemc/compliance_1666/test210/
H A Dtest210.cpp55 sc_assert(strcmp(sc_process_handle(obj).name(), "top.m.T") == 0);
74 sc_assert(strcmp(tops[0]->name(), "top") == 0);
80 sc_assert(strcmp(tops[0]->name(), "top") == 0);
81 sc_assert(strcmp(tops[1]->name(), "m2") == 0);
87 sc_assert(strcmp(tops[0]->name(), "top") == 0);
88 sc_assert(strcmp(tops[1]->name(), "m2") == 0);
89 sc_assert(strcmp(tops[2]->name(), "sig2") == 0);
110 sc_assert(strcmp(sc_process_handle(obj).name(), "top.m.T") == 0);
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test08/
H A Dtest08.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
53 prim_channel(const char* name = sc_gen_unique_name("prim_channel") )
54 : sc_prim_channel(name)
/gem5/src/systemc/tests/tlm/p2p/HierarchicalSocket/
H A DSimpleInitiatorWrapper.h40 SimpleInitiatorWrapper(sc_core::sc_module_name name) : argument
41 sc_core::sc_module(name),
H A DSimpleTargetWrapper.h40 SimpleTargetWrapper(sc_core::sc_module_name name) : argument
41 sc_core::sc_module(name),
/gem5/src/arch/mips/
H A Dtlb.cc13 * neither the name of the copyright holders nor the names of its
233 .name(name() + ".read_hits")
238 .name(name() + ".read_misses")
244 .name(name() + ".read_accesses")
249 .name(name() + ".write_hits")
254 .name(nam
[all...]
/gem5/src/arch/power/
H A Dtlb.cc15 * neither the name of the copyright holders nor the names of its
230 .name(name() + ".read_hits")
235 .name(name() + ".read_misses")
241 .name(name() + ".read_accesses")
246 .name(name() + ".write_hits")
251 .name(nam
[all...]
/gem5/src/cpu/o3/probe/
H A Dsimple_trace.cc21 * neither the name of the copyright holders nor the names of its
47 DPRINTFR(SimpleTrace, "[%s]: Commit 0x%08x %s.\n", name(),
54 DPRINTFR(SimpleTrace, "[%s]: Fetch 0x%08x %s.\n", name(),
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py47 def __validate_dt_name(name):
48 """Checks the name validity"""
49 return not any([True for char in name
52 def __init__(self, name):
53 """Init with name"""
54 self.name = name
55 if not FdtProperty.__validate_dt_name(self.name):
56 raise Exception("Invalid name '%s'" % self.name)
[all...]
/gem5/src/arch/riscv/
H A Dremote_gdb.hh15 * neither the name of the copyright holders nor the names of its
75 name() const function in class:RiscvISA::RemoteGDB::RiscvGdbRegCache
77 return gdb->name() + ".RiscvGdbRegCache";
/gem5/src/sim/
H A Dstat_control.cc26 * neither the name of the copyright holders nor the names of its
127 .name("sim_insts")
135 .name("sim_ops")
142 .name("sim_seconds")
148 .name("sim_freq")
154 .name("sim_ticks")
160 .name("final_tick")
166 .name("host_inst_rate")
173 .name("host_op_rate")
181 .name("host_mem_usag
[all...]
/gem5/src/mem/qos/
H A Dmem_ctrl.cc21 * neither the name of the copyright holders nor the names of its
249 turnPolicy->name());
291 avgPriority.init(_system->maxMasters()).name(name() + ".avgPriority")
296 .name(name() + ".avgPriorityDistance")
301 .name(name() + ".priorityMinLatency")
306 .name(name()
[all...]
/gem5/ext/testlib/
H A Dwrappers.py23 # neither the name of the copyright holders nor the names of its
52 def __init__(self, name, uid, path, result, status, suite_uid):
53 self.name = name
62 def __init__(self, name, uid, tags, path, status, result):
63 self.name = name
72 def __init__(self, name, result, status):
73 self.name = name
113 def name(self): member in class:LoadedTestable
[all...]
/gem5/src/systemc/ext/channel/
H A Dsc_inout.hh11 * neither the name of the copyright holders nor the names of its
62 explicit sc_inout(const char *name) : argument
63 sc_port<sc_signal_inout_if<T>, 1>(name), initValue(nullptr),
73 sc_inout(const char *name, const sc_signal_inout_if<T> &interface) : argument
74 sc_port<sc_signal_inout_if<T>, 1>(name, interface), initValue(nullptr),
81 sc_inout(const char *name, sc_port_b<sc_signal_inout_if<T> > &parent) : argument
82 sc_port<sc_signal_inout_if<T>, 1>(name, parent), initValue(nullptr),
89 sc_inout(const char *name, sc_port<sc_signal_inout_if<T>, 1> &parent) : argument
90 sc_port<sc_signal_inout_if<T>, 1>(name, parent), initValue(nullptr),
117 sc_trace(params->tf, (*this)->read(), params->name);
186 sc_trace(sc_trace_file *tf, const sc_inout<T> &i, const std::string &name) argument
204 sc_inout(const char *name) argument
221 sc_inout(const char *name, const sc_signal_inout_if<bool> &interface) argument
236 sc_inout(const char *name, sc_port_b<sc_signal_inout_if<bool> > &parent) argument
250 sc_inout(const char *name, sc_port<sc_signal_inout_if<bool>, 1> &parent) argument
358 sc_trace( sc_trace_file *tf, const sc_inout<bool> &i, const std::string &name) argument
379 sc_inout(const char *name) argument
398 sc_inout(const char *name, const sc_signal_inout_if<sc_dt::sc_logic> &interface) argument
416 sc_inout(const char *name, sc_port_b<sc_signal_inout_if<sc_dt::sc_logic> > &parent) argument
434 sc_inout(const char *name, sc_port<sc_signal_inout_if<sc_dt::sc_logic>, 1> &parent) argument
550 sc_trace(sc_trace_file *tf, const sc_inout<sc_dt::sc_logic> &i, const std::string &name) argument
[all...]
/gem5/src/python/m5/util/
H A Djobfile.py11 # neither the name of the copyright holders nor the names of its
35 def __init__(self, name, desc, **kwargs):
36 self.name = name
45 if key.startswith('_') or key in ('name', 'desc'):
74 if self.name:
75 print('name: %s' % self.name)
126 return self.name
159 if opt.name
[all...]

Completed in 26 milliseconds

1234567891011>>