Searched refs:name (Results 426 - 450 of 1016) sorted by relevance

<<11121314151617181920>>

/gem5/src/dev/arm/
H A Dsmmu_v3_proc.hh21 * neither the name of the copyright holders nor the names of its
128 SMMUProcess(const std::string &name, SMMUv3 &_smmu);
133 const std::string name() const { return myName; }; function in class:SMMUProcess
/gem5/src/base/
H A Dmatch.cc12 * neither the name of the copyright holders nor the names of its
76 ObjectMatch::domatch(const string &name) const
79 tokenize(name_tokens, name, '.');
/gem5/src/mem/ruby/system/
H A DGPUCoalescer.cc17 * 3. Neither the name of the copyright holder nor the names of its
1305 .name(name() + ".gpu_tcp_ld_hits")
1309 .name(name() + ".gpu_tcp_ld_transfers")
1313 .name(name() + ".gpu_tcc_ld_hits")
1317 .name(name() + ".gpu_ld_misses")
1322 .name(nam
[all...]
/gem5/src/mem/
H A Dcoherent_xbar.cc24 * neither the name of the copyright holders nor the names of its
71 std::string portName = csprintf("%s.master[%d]", name(), i);
84 std::string portName = name() + ".default";
97 std::string portName = csprintf("%s.slave[%d]", name(), i);
134 warn("CoherentXBar %s has no snooping ports attached!\n", name());
162 src_port->name(), pkt->print());
167 src_port->name(), pkt->print());
203 src_port->name(), pkt->print());
223 __func__, src_port->name(), pkt->print(),
312 src_port->name(), pk
[all...]
H A Dexternal_slave.cc21 * neither the name of the copyright holders nor the names of its
70 responseEvent([this]{ processResponseEvent(); }, name()),
91 StringWrap name(name_);
186 portName(params->name + ".port"),
227 fatal("ExternalSlave %s: externalPort not set!\n", name());
229 fatal("ExternalSlave %s is unconnected!\n", name());
H A Dpacket_queue.cc24 * neither the name of the copyright holders nor the names of its
68 DPRINTF(PacketQueue, "Queue %s received retry\n", name());
123 name());
240 : PacketQueue(_em, _label, name(_masterPort, _label)),
255 : PacketQueue(_em, _label, name(_masterPort, _label), force_order),
269 : PacketQueue(_em, _label, name(_slavePort, _label), force_order),
/gem5/src/base/stats/
H A Dtext.hh24 * neither the name of the copyright holders nor the names of its
79 std::string statName(const std::string &name) const;
91 void beginGroup(const char *name) override;
/gem5/src/systemc/ext/tlm_utils/
H A Dmulti_socket_bases.h38 #define TLM_DEFINE_FUNCTOR(name) \
41 static_##name(void *mod, void *fn, int index, TLM_FULL_ARG_LIST) \
53 delete_fn_container_of_##name(void *fn) \
63 class name##_functor{ \
70 name##_functor() : m_fn(0), m_del_fn(0), m_mod(0), m_mem_fn(0) {} \
71 ~name##_functor() \
84 m_fn = &static_##name<MODULE,TRAITS>; \
85 m_del_fn = &delete_fn_container_of_##name<MODULE, TRAITS>; \
107 name##_functor &operator = (const name##_functo
399 multi_init_base(const char *name) argument
465 multi_target_base(const char *name) argument
[all...]
/gem5/ext/iostream3/
H A Dzfstream.h61 * @param name File name.
66 open(const char* name,
242 * @param name File name.
246 gzifstream(const char* name,
274 * @param name File name.
285 open(const char* name,
331 * @param name Fil
[all...]
H A Dzfstream.cc51 gzfilebuf::open(const char *name, argument
67 if ((file = gzopen(name, char_mode)) == NULL)
379 gzifstream::gzifstream(const char* name, argument
384 this->open(name, mode);
398 gzifstream::open(const char* name, argument
401 if (!sb.open(name, mode | std::ios_base::in))
434 gzofstream::gzofstream(const char* name, argument
439 this->open(name, mode);
453 gzofstream::open(const char* name, argument
456 if (!sb.open(name, mod
[all...]
/gem5/ext/sst/tests/
H A Dtest6_arm_4c.py20 # neither the name of the copyright holders nor the names of its
47 def getenv(name):
50 res = os.environ[name]
109 def buildL1(name, m5, connector):
110 cache = sst.Component(name, "memHierarchy.Cache")
113 link = sst.Link("cpu_%s_link"%name)
/gem5/ext/systemc/src/tlm_core/tlm_2/tlm_sockets/
H A Dtlm_initiator_socket.h107 explicit tlm_base_initiator_socket(const char* name) argument
108 : port_type(name)
109 , m_export(sc_core::sc_gen_unique_name((std::string(name) + "_export").c_str()))
232 explicit tlm_initiator_socket(const char* name) : argument
240 >(name)
H A Dtlm_target_socket.h99 explicit tlm_base_target_socket(const char* name) argument
100 : export_type(name)
101 , m_port(sc_core::sc_gen_unique_name((std::string(name) + "_port").c_str()))
255 explicit tlm_target_socket(const char* name) : argument
263 >(name)
/gem5/src/sim/
H A Ddvfs_handler.cc21 * neither the name of the copyright holders nor the names of its
77 " assigned ID.\n", d->name());
82 "unique ID.\n", d->name(), domain_id);
188 "V\n", perf_level, d->name(), d->voltage(0));
195 "VoltageDomain %s. Returning 0 V\n", name(), perf_level, d->name());
/gem5/src/systemc/core/
H A Devent.cc11 * neither the name of the copyright holders nor the names of its
75 std::string path = parent ? (std::string(parent->name()) + ".") : "";
116 Event::name() const function in class:sc_gem5::Event
224 findEvent(const std::string &name) argument
228 if (!strcmp((*it)->name(), name.c_str()))
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_gem5_control.cc21 * neither the name of the copyright holders nor the names of its
74 Gem5TopLevelModule(sc_core::sc_module_name name,
149 e.name, e.message);
211 Gem5TopLevelModule::Gem5TopLevelModule(sc_core::sc_module_name name, argument
213 Gem5SystemC::Module(name),
269 e.name, e.message);
/gem5/src/dev/net/
H A Ddist_etherlink.cc21 * neither the name of the copyright holders nor the names of its
79 txLink = new TxLink(name() + ".link0", this, p->speed, p->delay_var,
81 rxLink = new RxLink(name() + ".link1", this, p->delay, p->dump);
100 localIface = new LocalIface(name() + ".int0", txLink, rxLink, distIface);
246 DistEtherLink::LocalIface::LocalIface(const std::string &name, argument
250 EtherInt(name), txLink(tx)
/gem5/src/systemc/channel/
H A Dsc_signal.cc11 * neither the name of the copyright holders nor the names of its
40 ScSignalBase::ScSignalBase(const char *name) : argument
41 sc_core::sc_prim_channel(name), _changeStamp(~0ULL),
94 ss << "\n signal " << "`" << sig->name() << "' (" << sig->kind() << ")";
95 ss << "\n first driver `" << first->name() << "' (" <<
97 ss << "\n second driver `" << second->name() << "' (" <<
/gem5/src/systemc/ext/tlm_core/2/sockets/
H A Dinitiator_socket.hh85 explicit tlm_base_initiator_socket(const char *name) : port_type(name), argument
87 (std::string(name) + "_export").c_str()))
190 explicit tlm_initiator_socket(const char *name) : argument
192 tlm_bw_transport_if<TYPES>, N, POL>(name)
H A Dtarget_socket.hh80 explicit tlm_base_target_socket(const char *name) : argument
81 export_type(name), m_port(sc_core::sc_gen_unique_name(
82 (std::string(name) + "_port").c_str()))
208 explicit tlm_target_socket(const char *name) : argument
211 tlm_bw_transport_if<TYPES>, N, POL>(name)
/gem5/src/arch/x86/
H A Dstacktrace.cc12 * neither the name of the copyright holders nor the names of its
48 readSymbol(ThreadContext *tc, const std::string name) argument
54 if (!symtab->findAddress(name, addr))
100 ProcessInfo::name(Addr ksp) const function in class:X86ISA::ProcessInfo
194 StringWrap name(tc->getCpuPtr()->name());
/gem5/ext/pybind11/tests/
H A Dtest_tagbased_polymorphic.cpp24 const std::string name; member in class:Animal::Kind
28 : kind(_kind), name(_name)
35 std::string bark() const { return name_of_kind(kind) + " " + name + " goes " + sound; }
102 std::string raw_name = type_of_kind(kind)->name();
118 .def_readonly("name", &Animal::name);
124 .def(py::init<std::string, int>(), "name"_a, "excitement"_a = 9001)
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_thread_process.h45 // NAME = name that must match the process for the message to print, or
53 if ( P && ( (strlen(NAME)==0) || !strcmp(NAME,P->name())) ) \
56 << " - " << P->name() << std::endl; \
273 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
286 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
299 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
313 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
326 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
341 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
356 SC_REPORT_ERROR( SC_ID_WAIT_DURING_UNWINDING_, name() );
[all...]
/gem5/src/gpu-compute/
H A Dhsail_code.hh17 * 3. Neither the name of the copyright holder nor the names of its contributors
169 std::string name; member in class:Label
181 if (name.empty()) {
182 name = _name;
184 assert(name == _name);
226 std::string name; member in class:StorageElement
233 : name(_name), offset(_offset), size(_size), brigSymbol(sym)
257 StorageElement* findSymbol(std::string name);
276 StorageElement* findSymbol(Brig::BrigSegment segment, std::string name);
284 findSymbol(Brig::BrigSegment8_t segment, std::string name) argument
[all...]
H A Dtlb_coalescer.cc17 * 3. Neither the name of the copyright holder nor the names of its
59 cpuSidePort.push_back(new CpuSidePort(csprintf("%s-port%d", name(), i),
65 memSidePort.push_back(new MemSidePort(csprintf("%s-port%d", name(), i),
475 name(), req_cnt);
531 .name(name() + ".uncoalesced_accesses")
536 .name(name() + ".coalesced_accesses")
541 .name(name()
[all...]

Completed in 39 milliseconds

<<11121314151617181920>>