Searched refs:name (Results 526 - 550 of 1016) sorted by relevance

<<21222324252627282930>>

/gem5/src/systemc/tests/systemc/datatypes/fx/fast_constructors/
H A Darray.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
75 void show(char const *const name, int i, T val) { argument
76 cerr << name << "[" << i << "] : " << val.to_double() << " : " << val.to_string(SC_HEX) << "\n";
/gem5/src/systemc/tests/systemc/datatypes/fx/observers/
H A Dobservers.cpp45 void observe(char const *name) { argument
47 std::cout << name << std::endl;
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/sc_spawn_options/test01/
H A Dtest01.cpp34 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
70 top(sc_module_name name) : sc_module(name) argument
/gem5/src/systemc/tests/systemc/misc/synth/synth-1.0/gcd/
H A Dgcd.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
52 gcd_cc( sc_module_name name )
113 testbench( sc_module_name name )
/gem5/src/systemc/tests/systemc/utils/sc_vector/test05/
H A Dtest05.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
52 << in[i].name()
59 << dynamic_cast<const sc_core::sc_object*>(in[i][j])->name()
/gem5/src/dev/arm/
H A Dtimer_cpulocal.hh21 * neither the name of the copyright holders nor the names of its
136 Timer(const std::string &name,
141 std::string name() const { return _name; } function in class:CpuLocalTimer::Timer
/gem5/src/dev/net/
H A Dethertap.hh12 * neither the name of the copyright holders nor the names of its
120 EtherTapInt(const std::string &name, EtherTapBase *t) : argument
121 EtherInt(name), tap(t)
/gem5/src/systemc/ext/tlm_utils/
H A Dsimple_initiator_socket.h162 explicit simple_initiator_socket(const char *name) : socket_b(name) {} argument
175 explicit simple_initiator_socket_optional(const char *name) : argument
176 socket_b(name)
326 explicit simple_initiator_socket_tagged(const char *name) : argument
327 socket_b(name)
341 explicit simple_initiator_socket_tagged_optional(const char *name) : argument
342 socket_b(name)
/gem5/src/mem/cache/tags/
H A Dfa_lru.cc25 * neither the name of the copyright holders nor the names of its
117 cacheTracking.regStats(name());
432 FALRU::CacheTracking::regStats(std::string name) argument
436 .name(name + ".falru_hits")
441 .name(name + ".falru_misses")
445 .name(name + ".falru_accesses")
/gem5/src/cpu/testers/traffic_gen/
H A Dbase.cc21 * neither the name of the copyright holders nor the names of its
75 noProgressEvent([this]{ noProgress(); }, name()),
79 port(name() + ".port", *this),
82 updateEvent([this]{ update(); }, name()),
109 fatal("The port of %s is not connected!\n", name());
135 " internal state\n", name());
155 " internal state\n", name());
213 name(), stats.numSuppressed.value());
332 name(), progressCheck);
/gem5/src/dev/x86/
H A Dintdev.hh24 * neither the name of the copyright holders nor the names of its
81 name(), pkt->cmd.toString(), getPeer());
142 intMasterPort(parent->name() + ".int_master", parent, this, latency)
/gem5/src/base/
H A Dstatistics.hh25 * neither the name of the copyright holders nor the names of its
256 DataWrap(Group *parent, const char *name, const char *desc) argument
264 if (name) {
265 info->setName(parent, name);
274 * Set the name and marks this stat to print at the end of simulation.
275 * @param name The new name.
279 name(const std::string &name) argument
282 info->setName(name);
286 const std::string &name() const { return this->info()->name; } function in class:Stats::DataWrap
379 subname(off_type index, const std::string &name) argument
444 DataWrapVec2d(Group *parent, const char *name, const char *desc) argument
[all...]
/gem5/src/arch/arm/
H A Dtlb.cc24 * neither the name of the copyright holders nor the names of its
446 .name(name() + ".inst_hits")
451 .name(name() + ".inst_misses")
456 .name(name() + ".inst_accesses")
461 .name(name() + ".read_hits")
466 .name(nam
[all...]
H A Dpmu.hh21 * neither the name of the copyright holders nor the names of its
102 void addEventProbe(unsigned int id, SimObject *obj, const char *name);
350 std::string name) {
353 " definition with name %s\n", name);
355 microArchitectureEventSet.emplace(object, name);
362 std::string name)
363 : ProbeListenerArgBase(obj->getProbeManager(), name),
349 addMicroarchitectureProbe(SimObject* object, std::string name) argument
361 RegularProbe(RegularEvent *parent, SimObject* obj, std::string name) argument
H A Dsemihosting.hh21 * neither the name of the copyright holders nor the names of its
118 FileBase(ArmSemihosting &_parent, const char *name, const char *_mode) argument
119 : parent(_parent), _name(name), mode(_mode) {}
210 const char *name, const char *mode);
225 File(ArmSemihosting &_parent, const char *name, const char *mode);
279 * implemented. It contains debug information (e.g., the name of
285 /** Call name */
286 const char *name; member in struct:ArmSemihosting::SemiCall
349 const std::string &name, const char *mode);
/gem5/ext/libfdt/
H A Dfdt_sw.c117 int fdt_begin_node(void *fdt, const char *name) argument
120 int namelen = strlen(name) + 1;
129 memcpy(nh->name, name, namelen);
170 int fdt_property(void *fdt, const char *name, const void *val, int len) argument
177 nameoff = _fdt_find_add_string(fdt, name);
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_fifo.h192 if( nm == typeid( sc_fifo_in_if<T> ).name() ||
193 nm == typeid( sc_fifo_blocking_in_if<T> ).name()
200 } else if( nm == typeid( sc_fifo_out_if<T> ).name() ||
201 nm == typeid( sc_fifo_blocking_out_if<T> ).name()
298 std::string nm = name();
326 os << "name = " << name() << ::std::endl;
/gem5/src/systemc/tests/include/
H A DSimpleATInitiator1.h100 SimpleATInitiator1(sc_core::sc_module_name name, argument
103 sc_core::sc_module(name),
149 std::cout << name() << ": Send write request: A = 0x"
155 std::cout << name() << ": Send read request: A = 0x"
164 std::cout << name() << ": Received error response @ "
168 std::cout << name() << ": Received ok response";
H A DSimpleATInitiator2.h100 SimpleATInitiator2(sc_core::sc_module_name name, argument
103 sc_core::sc_module(name),
145 std::cout << name() << ": Send write request: A = 0x"
151 std::cout << name() << ": Send read request: A = 0x"
160 std::cout << name() << ": Received error response @ "
164 std::cout << name() << ": Received ok response";
H A DSimpleLTInitiator3_DMI.h56 SimpleLTInitiator3_dmi(sc_core::sc_module_name name, argument
59 sc_core::sc_module(name),
105 std::cout << name() << ": Send write request: A = 0x"
111 std::cout << name() << ": Send read request: A = 0x"
120 std::cout << name() << ": Received error response @ "
124 std::cout << name() << ": Received ok response";
/gem5/src/cpu/kvm/
H A Dbase.cc21 * neither the name of the copyright holders nor the names of its
69 dataPort(name() + ".dcache_port", this),
70 instPort(name() + ".icache_port", this),
168 new EventFunctionWrapper([this]{ startupThread(); }, name(), true));
278 .name(name() + ".committedInsts")
283 .name(name() + ".numVMExits")
288 .name(name()
[all...]
/gem5/util/systemc/gem5_within_systemc/
H A Dmain.cc21 * neither the name of the copyright holders nor the names of its
129 SimControl(sc_core::sc_module_name name, int argc_, char **argv_);
137 * the object name when searching config manager for the CPU name
146 SimControl::SimControl(sc_core::sc_module_name name, argument
148 Gem5SystemC::Module(name),
269 fatal("Config problem in sim object %s: %s", e.name, e.message);
283 fatal("Config problem in sim object %s: %s", e.name, e.message);
330 fatal("Config problem in sim object %s: %s", e.name, e.message);
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py72 return_type = modifiers + node.return_type.name
73 template_args = [arg.name for arg in node.return_type.templated_types]
104 # preserve parameter name when reconstructing parameter text from
107 args = ', '.join(param.type.name for param in node.parameters)
122 output_lines.extend(['%s%s(%s,' % (indent, mock_method_macro, node.name),
132 (not desired_class_names or node.name in desired_class_names)):
133 class_name = node.name
H A Dtokenize.py74 def __init__(self, token_type, name, start, end):
76 self.name = name
83 return 'Token(%r)' % self.name
84 return 'Token(%r, %s, %s)' % (self.name, self.start, self.end)
154 # String and character constants can look like a name if
282 print('%-12s: %s' % (token.token_type, token.name))
/gem5/src/cpu/minor/
H A Ddecode.cc21 * neither the name of the copyright holders nor the names of its
48 Decode::Decode(const std::string &name, argument
54 Named(name),
65 fatal("%s: executeInputWidth must be >= 1 (%d)\n", name, outputWidth);
68 fatal("%s: decodeInputBufferSize must be >= 1 (%d)\n", name,
76 name + ".inputBuffer" + std::to_string(tid), "insts",
165 inst->fault->name());

Completed in 40 milliseconds

<<21222324252627282930>>