Searched refs:name (Results 701 - 725 of 1016) sorted by relevance

<<21222324252627282930>>

/gem5/util/minorview/
H A Dmodel.py20 # neither the name of the copyright holders nor the names of its
460 for name, value in self.pairs.iteritems():
461 ret.append("%s=%s" % (name, str(value)))
473 for name, value in self.pairs:
474 ret.append("%s=%s", name, str(value))
487 for name, value in self.pairs:
488 ret.append("%s=%s", name, str(value))
500 for name, value in self.pairs:
501 ret.append("%s=%s", name, str(value))
507 # blob's unit name
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_simcontext.cpp67 // NAME = name that must match the process for the message to print, or
75 if ( P && ( (strlen(NAME)==0) || !strcmp(NAME,P->name())) ) \
78 << " - " << P->name() << std::endl; \
784 method_p->name() );
809 thread_p->name() );
1110 sc_simcontext::find_object( const char* name )
1120 return m_object_manager->find_object( name );
1166 "`" << handle->name() << "' ignored";
1179 handle->name() );
1207 "`" << handle->name() << "' ignore
[all...]
H A Dsc_module.h416 #define declare_method_process(handle, name, host_tag, func) \
420 name, false, SC_MAKE_FUNC_PTR( host_tag, func ), \
427 #define declare_thread_process(handle, name, host_tag, func) \
431 name, false, \
438 #define declare_cthread_process(handle, name, host_tag, func, edge) \
442 name, false, \
479 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
H A Dsc_simcontext.h199 sc_object* find_object( const char* name );
653 extern sc_event* sc_find_event( const char* name );
655 extern sc_object* sc_find_object( const char* name );
715 inline bool sc_hierarchical_name_exists( const char* name )
717 return sc_find_object(name) || sc_find_event(name);
737 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
870 // Andy Goodrich: changed name of sc_get_current_process_base() to be
/gem5/ext/mcpat/
H A Dlogic.cc15 * neither the name of the copyright holders nor the names of its
50 name = _name;
52 local_result = init_interface(&l_ip, name);
149 name = _name;
166 local_result = init_interface(&l_ip, name);
234 uca_org_t init_result = init_interface(&l_ip, name); // init_result is dummy
330 name = "Pipeline?";
332 local_result = init_interface(&l_ip, name);
515 // Temp name for the following function call
516 name
[all...]
H A Dbus_interconnect.cc14 * neither the name of the copyright holders nor the names of its
50 name = "Bus Interconnect";
52 local_result = init_interface(&interface_ip, name);
100 XMLCSTR node_name = paramNode->getAttribute("name");
143 XMLCSTR node_name = statNode->getAttribute("name");
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h14 // * Neither the name of Google Inc. nor the names of its
1021 // The second argument to the macro is the name of the variable. If
1023 // containing the name of the variable.
1339 // This relatively ugly name is intentional. It prevents clashes with
1363 // This relatively ugly name is intentional. It prevents clashes with
1707 // We cannot name this class MutexLock because the ctor declaration would
1991 // We cannot name this class MutexLock because the ctor declaration would
2149 // We cannot name this class MutexLock because the ctor declaration would
2294 // standard functions as macros, the wrapper cannot have the same name
2299 // Functions with a different name o
2387 GetEnv(const char* name) argument
[all...]
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h50 extern sc_event * sc_lazy_kernel_event( sc_event**, const char* name );
172 sc_trace( tf, read(), name() );
214 bool is_output = std::string( if_typename_ ) == typeid(if_type).name();
250 os << " name = " << name() << ::std::endl;
401 sc_trace( tf, read(), name() );
568 sc_trace( tf, read(), name() );
616 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
/gem5/src/dev/virtio/
H A Dfs9p.cc21 * neither the name of the copyright holders nor the names of its
66 : type(_type), name(_name) {}
69 std::string name; member in struct:P9MsgInfo
74 #define P9MSG(type, name) \
75 { (type), P9MsgInfo((type), "T" # name ) }, \
76 { (type + 1), P9MsgInfo((type + 1), "R" # name ) }
204 header.len, info.name, header.type, header.tag);
H A Dfs9p.hh21 * neither the name of the copyright holders nor the names of its
137 * @name Feature bits
139 /** Device provides a name of the resource in its configuration */
156 std::string name() const { return parent.name() + ".queue"; } function in class:VirtIO9PBase::FSQueue
354 * Try to resolve the server name and connect to the 9p server.
/gem5/src/cpu/o3/
H A Drob_impl.hh24 * neither the name of the copyright holders nor the names of its
122 ROB<Impl>::name() const function in class:ROB
124 return cpu->name() + ".rob";
539 .name(name() + ".rob_reads")
543 .name(name() + ".rob_writes")
/gem5/ext/libelf/
H A Delf_queue.h13 * 4. Neither the name of the University nor the names of its contributors
137 #define SLIST_HEAD(name, type) \
138 struct name { \
209 #define STAILQ_HEAD(name, type) \
210 struct name { \
304 #define LIST_HEAD(name, type) \
305 struct name { \
406 #define TAILQ_HEAD(name, type) \
407 struct name { \
/gem5/src/dev/pci/
H A Dhost.cc21 * neither the name of the copyright holders nor the names of its
97 PciHost::DeviceInterface::name() const function in class:PciHost::DeviceInterface
100 host.name(), busAddr.bus, busAddr.dev, busAddr.func);
H A Dcopy_engine.hh24 * neither the name of the copyright holders nor the names of its
100 std::string name() { assert(ce); return ce->name() + csprintf("-chan%d", channelId); } function in class:CopyEngine::CopyEngineChannel
/gem5/src/systemc/core/
H A Dsc_process_handle.cc11 * neither the name of the copyright holders nor the names of its
147 sc_process_handle::name() const function in class:sc_core::sc_process_handle
149 return _gem5_process ? _gem5_process->name() : "";
/gem5/src/systemc/ext/core/
H A Dsc_event.hh11 * neither the name of the copyright holders nor the names of its
178 const char *name() const;
277 ss << "port is not bound: port '" << _port->name() << "' (" <<
/gem5/src/systemc/tests/include/
H A DSimpleBusLT.h45 SimpleBusLT(sc_core::sc_module_name name) : argument
46 sc_core::sc_module(name)
/gem5/src/systemc/tests/systemc/communication/sc_signal/check_writer/test15/
H A Dtest15.cpp156 << std::setw(8) << sc_core::sc_get_current_process_handle().name() << ": "
160 << sig.name() << " = "
/gem5/src/systemc/tests/systemc/kernel/sc_event/test15/
H A Devent_triggered.cpp30 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
150 << sc_get_current_process_handle().name() << ": ";
169 << sc_get_current_process_handle().name() << ": "
/gem5/ext/testlib/
H A Dconfig.py11 # neither the name of the copyright holders nor the names of its
140 def _set(self, name, value):
141 self._config[name] = value
369 :attr name: The long name of this object that will be stored in the arg
379 self.name = kwargs['dest']
387 if not hasattr(self, 'name'):
388 self.name = flag.lstrip('-')
390 if not hasattr(self, 'name'):
391 self.name
[all...]
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_module.cc26 * neither the name of the copyright holders nor the names of its
82 Module::Module(sc_core::sc_module_name name) : sc_core::sc_channel(name), argument
/gem5/configs/example/arm/
H A Dstarter_fs.py20 # neither the name of the copyright holders nor the names of its
86 def create_cow_image(name):
89 image.child.image_file = SysPaths.disk(name)
/gem5/util/
H A Dcompile12 # neither the name of the copyright holders nor the names of its
125 def bool_option(name, default, help):
126 '''add a boolean option called --name and --no-name.
129 tname = '--%s' % name
130 fname = '--no-%s' % name
131 dest = name.replace('-', '_')
/gem5/src/dev/arm/
H A Dsmmu_v3_proc.cc21 * neither the name of the copyright holders nor the names of its
45 SMMUProcess::SMMUProcess(const std::string &name, SMMUv3 &_smmu) : argument
47 myName(name),
/gem5/src/cpu/
H A Dbase_dyn_inst_impl.hh24 * neither the name of the copyright holders nor the names of its
133 seqNum, cpu->name(), cpu->instcount);
160 seqNum, cpu->name(), cpu->instcount);

Completed in 30 milliseconds

<<21222324252627282930>>