Searched refs:name (Results 326 - 350 of 1016) sorted by relevance

<<11121314151617181920>>

/gem5/src/mem/ruby/network/garnet2.0/
H A DRouter.cc13 * neither the name of the copyright holders nor the names of its
196 .name(name() + ".buffer_reads")
201 .name(name() + ".buffer_writes")
206 .name(name() + ".crossbar_activity")
211 .name(name() + ".sw_input_arbiter_activity")
216 .name(nam
[all...]
/gem5/src/arch/x86/
H A Dfaults.hh21 * neither the name of the copyright holders nor the names of its
68 const char * name() const function in class:X86ISA::X86FaultBase
107 X86Fault(const char * name, const char * mnem, argument
109 : X86FaultBase(name, mnem, vector, _errorCode)
118 X86Trap(const char * name, const char * mnem, argument
120 : X86FaultBase(name, mnem, vector, _errorCode)
131 X86Abort(const char * name, const char * mnem, argument
133 : X86FaultBase(name, mnem, vector, _errorCode)
144 X86Interrupt(const char * name, const char * mnem, argument
146 : X86FaultBase(name, mne
153 const char * name() const function in class:X86ISA::UnimpInstFault
[all...]
/gem5/src/cpu/testers/traffic_gen/
H A Dtraffic_gen.cc21 * neither the name of the copyright holders nor the names of its
114 TrafficGen::resolveFile(const std::string &name) argument
117 if (name.empty() || name[0] == '/')
118 return name;
122 const std::string config_rel = csprintf("%s/%s", config_dir, name);
131 return name;
146 name(), configFile);
285 name(), mode);
309 "to the config file)\n", name());
[all...]
/gem5/src/dev/net/
H A Detherlink.cc24 * neither the name of the copyright holders nor the names of its
72 link[0] = new Link(name() + ".link0", this, 0, p->speed,
74 link[1] = new Link(name() + ".link1", this, 1, p->speed,
77 interface[0] = new Interface(name() + ".int0", link[0], link[1]);
78 interface[1] = new Interface(name() + ".int1", link[1], link[0]);
102 EtherLink::Interface::Interface(const string &name, Link *tx, Link *rx) argument
103 : EtherInt(name), txlink(tx)
109 EtherLink::Link::Link(const string &name, EtherLink *p, int num, argument
111 : objName(name), parent(p), number(num), txint(NULL), rxint(NULL),
113 doneEvent([this]{ txDone(); }, name),
[all...]
H A Detherlink.hh24 * neither the name of the copyright holders nor the names of its
109 Link(const std::string &name, EtherLink *p, int num,
113 const std::string name() const { return objName; } function in class:EtherLink::Link
134 Interface(const std::string &name, Link *txlink, Link *rxlink);
/gem5/util/batch/
H A Dsend.py12 # neither the name of the copyright holders nor the names of its
177 if job.name in jobnames:
182 if expr.match(job.name):
194 print job.name
200 jobdir = JobDir(joinpath(conf.rootdir, job.name))
254 jobdir = JobDir(joinpath(rootdir, job.name))
256 cptdir = JobDir(joinpath(rootdir, job.checkpoint.name))
268 print 'Job name: %s' % job.name
275 qsub.name
[all...]
/gem5/src/mem/
H A Dnoncoherent_xbar.cc24 * neither the name of the copyright holders nor the names of its
64 std::string portName = csprintf("%s.master[%d]", name(), i);
75 std::string portName = name() + ".default";
85 std::string portName = csprintf("%s.slave[%d]", name(), i);
117 src_port->name(), pkt->cmdString(), pkt->getAddr());
122 src_port->name(), pkt->cmdString(), pkt->getAddr());
151 src_port->name(), pkt->cmdString(), pkt->getAddr());
196 src_port->name(), pkt->cmdString(), pkt->getAddr());
201 src_port->name(), pkt->cmdString(), pkt->getAddr());
250 slavePorts[slave_port_id]->name(), pk
[all...]
H A Dhmc_controller.cc58 src_port->name(), pkt->cmdString(), pkt->getAddr());
63 src_port->name(), pkt->cmdString(), pkt->getAddr());
92 src_port->name(), pkt->cmdString(), pkt->getAddr());
/gem5/src/arch/hsail/
H A Doperand.cc17 * 3. Neither the name of the copyright holder nor the names of its contributors
109 res_str += csprintf("%s ", it->name.c_str());
129 func_name = obj->getString(p->name);
135 DPRINTF(GPUReg, "Operand Func-ref name: %s\n", func_name);
179 const char *name = obj->getString(strOffset); local
181 regIdx = strtoul(name + 2, &endptr, 10);
183 if (name[0] != '$' || name[1] != _regFileChar) {
184 fatal("register operand parse error on \"%s\"\n", name);
334 name
[all...]
/gem5/src/systemc/tests/
H A Dverify.py12 # neither the name of the copyright holders nor the names of its
92 return '.'.join([self.name, self.suffix])
108 def __init__(cls, name, bases, d):
110 test_phase_classes[d['name']] = cls
112 super(TestPhaseMeta, cls).__init__(name, bases, d)
126 name = 'compile' variable in class:CompilePhase
143 name = 'execute' variable in class:RunPhase
318 def entry(self, name):
320 return (n == name) or n.startswith(name
350 name = 'verify' variable in class:VerifyPhase
[all...]
/gem5/src/mem/cache/
H A Dbase.cc24 * neither the name of the copyright holders nor the names of its
81 cpuSidePort (p->name + ".cpu_side", this, "CpuSidePort"),
82 memSidePort(p->name + ".mem_side", this, "MemSidePort"),
92 name(), false,
184 fatal("Cache ports on %s are not connected\n", name());
411 "%s saw a non-zero packet delay\n", name());
631 pkt->pushLabel(name());
661 // We're leaving the cache, so pop cache->name() label
1032 name());
1407 "in read-only cache %s\n", name());
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dattr.h33 struct name { const char *value; name(const char *value) : value(value) { } }; function in struct:name
123 const char *name; ///< Argument name member in struct:argument_record
129 argument_record(const char *name, const char *descr, handle value, bool convert, bool none) argument
130 : name(name), descr(descr), value(value), convert(convert), none(none) { }
139 /// Function name
140 char *name = nullptr; /* why no C++ strings? They generate heavier code.. */ member in struct:function_record
163 /// True if name
210 const char *name = nullptr; member in struct:type_record
[all...]
/gem5/configs/common/
H A Dcpu2000.py11 # neither the name of the copyright holders nor the names of its
79 if not hasattr(self.__class__, 'name'):
80 self.name = self.__class__.__name__
83 self.binary = self.name
89 self.output = '%s.out' % self.name
99 (self.name, input_set))
107 data_dir = joinpath(spec_dist, 'data', self.name)
126 self.stdin = joinpath(inputs_dir, '%s.in' % self.name)
131 self.stdout = joinpath(outputs_dir, '%s.out' % self.name)
140 process_args['cmd'] = [ self.name ]
187 name = 'ammp' variable in class:ammp
193 name = 'applu' variable in class:applu
199 name = 'apsi' variable in class:apsi
205 name = 'art' variable in class:art
272 name = 'equake' variable in class:equake
280 name = 'facerec' variable in class:facerec
286 name = 'fma3d' variable in class:fma3d
292 name = 'galgel' variable in class:galgel
298 name = 'lucas' variable in class:lucas
304 name = 'mesa' variable in class:mesa
327 name = 'mgrid' variable in class:mgrid
333 name = 'sixtrack' variable in class:sixtrack
341 name = 'swim' variable in class:swim
347 name = 'wupwise' variable in class:wupwise
355 name = 'bzip2' variable in class:bzip2
390 name = 'crafty' variable in class:crafty
396 name = 'eon' variable in class:eon
419 name = 'gap' variable in class:gap
446 name = 'gcc' variable in class:gcc
491 name = 'gzip' variable in class:gzip
557 name = 'mcf' variable in class:mcf
564 name = 'parser' variable in class:parser
571 name = 'perlbmk' variable in class:perlbmk
638 name = 'twolf' variable in class:twolf
663 name = 'vortex' variable in class:vortex
718 name = 'vpr' variable in class:vpr
[all...]
/gem5/ext/pybind11/tests/
H A Dlocal_bindings.h57 Pet(std::string name) : name_(name) {}
59 const std::string &name() { return name_; }
H A Dtest_local_bindings.cpp89 class Cat : public pets::Pet { public: Cat(std::string name) : Pet(name) {}; }; argument
91 .def("get_name", &pets::Pet::name);
95 m.def("pet_name", [](pets::Pet &p) { return p.name(); });
/gem5/src/systemc/tests/systemc/compliance_1666/test208/
H A Dtest208.cpp62 sc_assert (strcmp(children[0]->name(), "top.m.T.obj") == 0);
102 sc_assert (strcmp(children[0]->name(), "top.m.T.dynamic_proc.obj") == 0);
148 sc_assert (strcmp(children[0]->name(), "top.m.T.dynamic_proc.dynamic_proc2.obj") == 0);
204 sc_assert (strcmp(children[0]->name(), "top.clk") == 0);
205 sc_assert (strcmp(children[1]->name(), "top.p") == 0);
206 sc_assert (strcmp(children[2]->name(), "top.xp") == 0);
207 sc_assert (strcmp(children[3]->name(), "top.sig") == 0);
208 sc_assert (strcmp(children[4]->name(), "top.m") == 0);
209 sc_assert (strcmp(children[5]->name(), "top.p1") == 0);
210 sc_assert (strcmp(children[6]->name(), "to
[all...]
/gem5/src/gpu-compute/
H A Dlocal_memory_pipeline.cc17 * 3. Neither the name of the copyright holder nor the names of its
54 _name = computeUnit->name() + ".LocalMemPipeline";
123 .name(name() + ".load_vrf_bank_conflict_cycles")
/gem5/ext/googletest/googletest/samples/
H A Dsample9_unittest.cc13 // * Neither the name of Google Inc. nor the names of its
68 test_info.name());
88 test_info.name());
147 // 'Fails' in the name).
149 strcmp(test_info.name(), "Fails") != 0) {
/gem5/src/cpu/minor/
H A Dbuffers.hh21 * neither the name of the copyright holders nor the names of its
68 /** Print the data in a format suitable to be the value in "name=value"
164 MinorBuffer(const std::string &name, argument
168 Named(name), TimeBuffer<ElemType>(num_past, num_future),
232 Latch(const std::string &name, argument
237 buffer(name, data_name, delay_, 0, (report_backwards ? -delay_ : 0),
305 SelfStallingPipeline(const std::string &name, argument
309 (name, data_name, depth, 0, -1, -depth),
415 Queue(const std::string &name, const std::string &data_name, argument
417 Named(name),
577 InputBuffer(const std::string &name, const std::string &data_name, unsigned int capacity_) argument
[all...]
/gem5/src/mem/ruby/network/
H A DMessageBuffer.cc12 * neither the name of the copyright holders nor the names of its
187 panic("FIFO ordering violated: %s name: %s current time: %d "
189 *this, name(), current_time, delta, arrival_time,
395 ccprintf(out, "%s] %s", copy, name());
409 .name(name() + ".not_avail_count")
414 .name(name() + ".avg_buf_msgs")
419 .name(name()
[all...]
H A DBasicLink.cc12 * neither the name of the copyright holders nor the names of its
47 out << name();
/gem5/src/dev/
H A DDevice.py23 # neither the name of the copyright holders nor the names of its
55 def generateBasicPioDeviceNode(self, state, name, pio_addr,
57 node = FdtNode("%s@%x" % (name, long(pio_addr)))
65 " in PioDevice %s") % name)
/gem5/src/mem/slicc/ast/
H A DNewExprAST.py12 # neither the name of the copyright holders nor the names of its
39 def name(self): member in class:NewExprAST
/gem5/src/cpu/
H A Dpc_event.cc12 * neither the name of the copyright holders nor the names of its
140 StringWrap name(tc->getCpuPtr()->name() + ".break_event");
171 StringWrap name(tc->getCpuPtr()->name() + ".panic_event");
/gem5/src/sim/power/
H A Dmathexpr_powermodel.hh21 * neither the name of the copyright holders nor the names of its
81 * @param name Name of the variable to retrieve the value from
85 double getStatValue(const std::string & name) const;

Completed in 39 milliseconds

<<11121314151617181920>>