Searched refs:name (Results 676 - 700 of 1016) sorted by relevance

<<21222324252627282930>>

/gem5/tests/testing/
H A Dunits.py22 # neither the name of the copyright holders nor the names of its
71 def __init__(self, name, ref_dir, test_dir, skip=False):
72 self.name = name
85 return UnitResult(self.name, state, **kwargs)
/gem5/util/batch/
H A Djob.py12 # neither the name of the copyright holders nor the names of its
40 for name in files:
41 os.remove(joinpath(root, name))
42 for name in dirs:
43 os.rmdir(joinpath(root, name))
/gem5/util/
H A Ddecode_inst_trace.py22 # neither the name of the copyright holders nor the names of its
136 ascii_out.write(' : %10s' % inst_pb2._INST_INSTTYPE.values_by_number[inst.type].name)
/gem5/util/pbs/
H A Djob.py12 # neither the name of the copyright holders nor the names of its
42 for name in files:
43 os.remove(joinpath(root, name))
44 for name in dirs:
45 os.rmdir(joinpath(root, name))
/gem5/src/arch/riscv/
H A Dstacktrace.hh14 * neither the name of the copyright holders nor the names of its
55 std::string name(Addr ksp) const;
/gem5/src/arch/power/
H A Dstacktrace.hh14 * neither the name of the copyright holders nor the names of its
55 std::string name(Addr ksp) const;
/gem5/src/kern/linux/
H A Dlinux.cc12 * neither the name of the copyright holders nor the names of its
47 curTick(), tc->getCpuPtr()->name(), path.c_str());
/gem5/src/cpu/testers/directedtest/
H A DRubyDirectedTester.hh13 * neither the name of the copyright holders nor the names of its
64 { panic("%s does not expect a retry\n", name()); }
H A DRubyDirectedTester.cc25 * neither the name of the copyright holders nor the names of its
60 ports.push_back(new CpuPort(csprintf("%s-port%d", name(), i),
/gem5/src/mem/cache/prefetch/
H A Dbase.cc24 * neither the name of the copyright holders nor the names of its
120 .name(name() + ".num_hwpf_issued")
252 BasePrefetcher::addEventProbe(SimObject *obj, const char *name) argument
255 listeners.push_back(new PrefetchListener(*this, pm, name));
/gem5/src/python/pybind11/
H A Ddebug.cc25 * neither the name of the copyright holders nor the names of its
100 .def("name", &Debug::Flag::name)
/gem5/src/systemc/tlm_bridge/
H A Dsc_peq.hh17 * 3. Neither the name of the copyright holder nor the names of its
68 const std::string name() const { return eventName; } function in class:Gem5SystemC::PayloadEvent
/gem5/src/dev/
H A Dio_device.hh24 * neither the name of the copyright holders nor the names of its
91 SimpleTimingPort(dev->name() + ".pio", dev), device(dev)
/gem5/src/dev/arm/
H A Dsmmu_v3_slaveifc.hh21 * neither the name of the copyright holders nor the names of its
120 Port& getPort(const std::string &name, PortID id) override;
H A Dufs_device.cc21 * neither the name of the copyright holders nor the names of its
736 SCSIResumeEvent([this]{ SCSIStart(); }, name()),
737 UTPEvent([this]{ finalUTP(); }, name())
781 std::string UFSHost_name = name() + ".UFSDiskHost";
786 .name(UFSHost_name + ".currentSCSIQueue")
790 .name(UFSHost_name + ".currentReadSSDQueue")
794 .name(UFSHost_name + ".currentWriteSSDQueue")
800 .name(UFSHost_name + ".totalReadSSD")
805 .name(UFSHost_name + ".totalWrittenSSD")
810 .name(UFSHost_nam
[all...]
/gem5/src/dev/x86/
H A Dcmos.hh12 * neither the name of the copyright holders nor the names of its
78 rtc(this, name() + ".rtc", p->time, true, ULL(5000000000),
/gem5/ext/pybind11/tests/
H A Dtest_class.py48 """Tests that a properly qualified name is set in __qualname__ (even in pre-3.3, where we
49 backport the attribute) and that generated docstrings properly use it and the module name"""
74 assert roger.name() + " is a " + roger.species() == "Rabbit is a parrot"
78 assert polly.name() + " is a " + polly.species() == "Polly is a parrot"
82 assert molly.name() + " is a " + molly.species() == "Molly is a dog"
86 assert fred.name() + " is a " + fred.species() == "Fred is a rodent"
/gem5/src/arch/mips/linux/
H A Dprocess.cc13 * neither the name of the copyright holders nor the names of its
87 TypedBufferArg<Linux::utsname> name(process->getSyscallArg(tc, index));
89 strcpy(name->sysname, "Linux");
90 strcpy(name->nodename,"sim.gem5.org");
91 strcpy(name->release, process->release.c_str());
92 strcpy(name->version, "#1 Mon Aug 18 11:32:15 EDT 2003");
93 strcpy(name->machine, "mips");
95 name.copyOut(tc->getVirtProxy());
/gem5/src/arch/power/linux/
H A Dprocess.cc14 * neither the name of the copyright holders nor the names of its
87 TypedBufferArg<Linux::utsname> name(process->getSyscallArg(tc, index));
89 strcpy(name->sysname, "Linux");
90 strcpy(name->nodename, "sim.gem5.org");
91 strcpy(name->release, process->release.c_str());
92 strcpy(name->version, "#1 Mon Aug 18 11:32:15 EDT 2003");
93 strcpy(name->machine, "power");
95 name.copyOut(tc->getVirtProxy());
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h14 // * Neither the name of Google Inc. nor the names of its
56 // Input to a parameterized test name generator, describing a test parameter.
67 // A builtin parameterized test name generator which returns the result of
82 // TEST_P macro is used to define two tests with the same name
374 // Default parameterized test name generator, returns a string containing the
385 // Parameterized test name overload helpers, which help the
387 // test name generator and user param name generator.
474 // Base part of test case name for display purposes.
510 const char* name, CodeLocatio
509 ParameterizedTestCaseInfo( const char* name, CodeLocation code_location) argument
632 std::string name; member in struct:testing::internal::ParameterizedTestCaseInfo::InstantiationInfo
640 IsValidParamName(const std::string& name) argument
[all...]
/gem5/src/dev/net/
H A Dsinic.cc12 * neither the name of the copyright holders nor the names of its
94 txEvent([this]{ txEventTransmit(); }, name()),
95 rxDmaEvent([this]{ rxDmaDone(); }, name()),
96 txDmaEvent([this]{ txDmaDone(); }, name()),
100 interface = new Interface(name() + ".int0", this);
116 .name(name() + ".maxVnicDistance")
121 .name(name() + ".totalVnicDistance")
125 .name(nam
[all...]
/gem5/src/mem/
H A Dphysical.cc21 * neither the name of the copyright holders nor the names of its
96 m->name());
103 m->name());
108 "be interleaved\n", m->name());
223 m->name());
329 // we cannot use the address range for the name as the
331 string filename = name() + ".store" + to_string(store_id) + ".pmem";
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h387 inline bool hasattr(handle obj, handle name) { argument
388 return PyObject_HasAttr(obj.ptr(), name.ptr()) == 1;
391 inline bool hasattr(handle obj, const char *name) { argument
392 return PyObject_HasAttrString(obj.ptr(), name) == 1;
395 inline void delattr(handle obj, handle name) { argument
396 if (PyObject_DelAttr(obj.ptr(), name.ptr()) != 0) { throw error_already_set(); }
399 inline void delattr(handle obj, const char *name) { argument
400 if (PyObject_DelAttrString(obj.ptr(), name) != 0) { throw error_already_set(); }
403 inline object getattr(handle obj, handle name) { argument
404 PyObject *result = PyObject_GetAttr(obj.ptr(), name
409 getattr(handle obj, const char *name) argument
415 getattr(handle obj, handle name, handle default_) argument
424 getattr(handle obj, const char *name, handle default_) argument
433 setattr(handle obj, handle name, handle value) argument
437 setattr(handle obj, const char *name, handle value) argument
1189 auto name = this->name(); local
1195 const char *name() const { return PyCapsule_GetName(m_ptr); } function in class:capsule
[all...]
H A Dcast.h194 std::string tname = tp.name();
729 std::string tname = rtti_type ? rtti_type->name() : cast_type.name();
830 static constexpr auto name = _<type>(); member in class:type_caster_base
933 static constexpr auto name = caster_t::name;
948 static constexpr auto name = py_name; \
1113 static constexpr auto name = _("capsule");
1356 static constexpr auto name = _(PYBIND11_STRING_NAME);
1381 static constexpr auto name
[all...]
/gem5/src/dev/pci/
H A Dcopy_engine.cc24 * neither the name of the copyright holders nor the names of its
87 fetchCompleteEvent([this]{ fetchDescComplete(); }, name()),
88 addrCompleteEvent([this]{ fetchAddrComplete(); }, name()),
89 readCompleteEvent([this]{ readCopyBytesComplete(); }, name()),
90 writeCompleteEvent([this]{ writeCopyBytesComplete(); }, name()),
91 statusCompleteEvent([this]{ writeStatusComplete(); }, name())
439 .name(name() + ".bytes_copied")
445 .name(name()
[all...]

Completed in 46 milliseconds

<<21222324252627282930>>