Searched refs:name (Results 951 - 975 of 1016) sorted by relevance

<<31323334353637383940>>

/gem5/src/cpu/
H A Dthread_context.hh25 * neither the name of the copyright holders nor the names of its
190 virtual void regStats(const std::string &name) = 0;
H A Dbase.hh25 * neither the name of the copyright holders nor the names of its
198 * @param if_name the port name
201 * @return a reference to the port with the given name
493 * @name PMU Probe points.
510 * @param name Name of the probe point.
513 ProbePoints::PMUUPtr pmuProbePoint(const char *name);
/gem5/src/mem/cache/prefetch/
H A Daccess_map_pattern_matching.cc12 * neither the name of the copyright holders nor the names of its
56 epochEvent([this]{ processEpochEvent(); }, name())
/gem5/src/mem/
H A Dcoherent_xbar.hh24 * neither the name of the copyright holders nor the names of its
225 MasterPort(slave_port.name() + ".snoopRespPort", &_xbar),
/gem5/src/sim/
H A Dsystem.hh25 * neither the name of the copyright holders nor the names of its
98 * Create a system port with a name and an owner.
322 * It's used to uniquely id any master in the system by name for things
331 * Strips off the system name from a master name
343 * appropriately name the bins of their per-master stats before the stats
350 * provided and it contains the name of the submaster. The method will
351 * create a master's name by concatenating the SimObject name with the
366 * @param submaster String containing the submaster's name
[all...]
/gem5/src/systemc/core/
H A Dscheduler.hh11 * neither the name of the copyright holders nor the names of its
169 const std::string name() const { return "systemc_scheduler"; } function in class:sc_gem5::Scheduler
/gem5/ext/testlib/
H A Dloader.py11 # neither the name of the copyright holders nor the names of its
38 a name starting or ending in test(s). If there are any additional
39 components of the name they must be connected with '-' or '_'. Lastly,
90 # - or _ to separate additional name components.
103 '''Return the given filepath as a module name.'''
264 name=path_as_suitename(path))
/gem5/src/cpu/minor/
H A Dcpu.cc21 * neither the name of the copyright holders nor the names of its
129 stats.regStats(name(), *this);
/gem5/src/dev/x86/
H A Di82094aa.cc12 * neither the name of the copyright holders nor the names of its
63 csprintf("%s.inputs[%d]", name(), i), i, this));
/gem5/ext/pybind11/tests/
H A Dtest_local_bindings.py203 assert mydog.name() == "Rover"
/gem5/src/dev/arm/
H A Dgic_v3_its.cc21 * neither the name of the copyright holders nor the names of its
74 ItsProcess::name() const function in class:ItsProcess
76 return its.name();
333 return entry != cmdDispatcher.end() ? entry->second.name : "INVALID";
778 dmaPort(name() + ".dma", *this),
786 commandEvent([this] { checkCommandQueue(); }, name()),
/gem5/src/dev/net/
H A Di8254xGBe.cc12 * neither the name of the copyright holders nor the names of its
67 rdtrEvent([this]{ rdtrProcess(); }, name()),
68 radvEvent([this]{ radvProcess(); }, name()),
69 tadvEvent([this]{ tadvProcess(); }, name()),
70 tidvEvent([this]{ tidvProcess(); }, name()),
71 tickEvent([this]{ tick(); }, name()),
72 interEvent([this]{ delayIntEvent(); }, name()),
73 rxDescCache(this, name()+".RxDesc", p->rx_desc_cache_size),
74 txDescCache(this, name()+".TxDesc", p->tx_desc_cache_size),
77 etherInt = new IGbEInt(name()
[all...]
/gem5/util/minorview/
H A Dview.py20 # neither the name of the copyright holders nor the names of its
476 for name, value in event.pairs.iteritems():
477 print name, '=', value
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed_subref.inc30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
H A Dsc_unsigned_subref.inc30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
/gem5/src/systemc/dt/int/
H A Dsc_signed_subref.inc30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
H A Dsc_unsigned_subref.inc30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
/gem5/src/dev/pci/
H A Ddevice.cc24 * neither the name of the copyright holders nor the names of its
228 "not implemented for %s!\n", this->name());
296 "not implemented for %s!\n", this->name());
/gem5/src/dev/storage/
H A Dide_ctrl.cc24 * neither the name of the copyright holders nor the names of its
96 : PciDevice(p), primary(name() + ".primary", BARSize[0], BARSize[1]),
97 secondary(name() + ".secondary", BARSize[2], BARSize[3]),
/gem5/src/arch/arm/
H A Dtable_walker.hh21 * neither the name of the copyright holders nor the names of its
814 std::string name() const { return tableWalker->name(); } function in class:ArmISA::TableWalker::LongDescriptor::WalkerState
/gem5/src/arch/x86/
H A Dinterrupts.cc33 * neither the name of the copyright holders nor the names of its
601 apicTimerEvent([this]{ processApicTimerEvent(); }, name()),
609 intSlavePort(name() + ".int_slave", this, this),
/gem5/src/cpu/o3/
H A Dlsq.hh25 * neither the name of the copyright holders nor the names of its
135 : MasterPort(_cpu->name() + ".dcache_port", _cpu), lsq(_lsq),
822 /** Returns the name of the LSQ. */
823 std::string name() const;
/gem5/src/cpu/simple/
H A Datomic.cc25 * neither the name of the copyright holders nor the names of its
86 icachePort(name() + ".icache_port", this),
87 dcachePort(name() + ".dcache_port", this),
/gem5/ext/mcpat/
H A Dcore.cc15 * neither the name of the copyright holders nor the names of its
65 name = "Instruction Fetch Unit";
77 XMLCSTR name = childXML->getAttribute("name"); local
78 if (strcmp(name, "Instruction Cache") == 0 ||
79 strcmp(name, "icache") == 0) {
224 XMLCSTR node_name = paramNode->getAttribute("name");
246 XMLCSTR node_name = statNode->getAttribute("name");
296 name = "Branch Predictor";
469 XMLCSTR node_name = paramNode->getAttribute("name");
821 XMLCSTR name = childXML->getAttribute("name"); local
[all...]
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_port.h568 return typeid( IF ).name();
635 MODIFICATION LOG - modifiers, enter your name, affiliation, date and

Completed in 54 milliseconds

<<31323334353637383940>>