Searched refs:obj (Results 76 - 100 of 168) sorted by relevance

1234567

/gem5/util/
H A Don-chip-network-power-area.py95 def getClock(obj, config):
96 if config.get(obj, "type") == "SrcClockDomain":
97 return config.getint(obj, "clock")
99 if config.get(obj, "type") == "DerivedClockDomain":
100 source = config.get(obj, "clk_domain")
101 divider = config.getint(obj, "clk_divider")
104 source = config.get(obj, "clk_domain")
/gem5/ext/testlib/
H A Dlog.py81 def __init__(self, obj, status):
82 Record.__init__(self, metadata=obj.metadata, status=status)
84 def __init__(self, obj, result):
85 Record.__init__(self, metadata=obj.metadata, result=result)
209 def status_update(self, obj, status):
211 self._status_typemap[obj.__class__.__name__](obj, status))
213 def result_update(self, obj, result):
215 self._result_typemap[obj.__class__.__name__](obj, resul
[all...]
H A Dresult.py66 def __init__(self, obj, suite, directory):
67 self._metadata = obj.metadata
81 def __init__(self, obj, directory):
82 self._metadata = obj.metadata
84 self._wrap_tests(obj)
86 def _wrap_tests(self, obj):
88 for test in obj]
108 def __init__(self, obj, directory):
110 self._metadata = obj.metadata
111 self._wrap_suites(obj)
[all...]
/gem5/src/cpu/testers/traffic_gen/
H A Ddram_gen.hh70 * @param obj SimObject owning this sequence generator
90 DramGen(SimObject &obj,
H A Dbase_gen.hh92 * @param obj simobject owning the generator
96 BaseGen(SimObject &obj, MasterID master_id, Tick _duration);
140 StochasticGen(SimObject &obj,
/gem5/src/python/m5/util/
H A Dfdthelper.py99 def phandle(self, obj):
104 if isinstance(obj, SimObject):
105 key = str(id(obj))
108 key = str(obj)
175 def __init__(self, name, obj=None):
176 """Create a new node and immediately set the phandle property, if obj
179 if obj != None:
180 self.appendPhandle(obj)
218 def appendPhandle(self, obj):
224 phandle = state.phandle(obj)
[all...]
H A Ddot_writer_ruby.py128 for obj in root.descendants():
129 if isinstance(obj, m5.objects.RubyNetwork):
130 networks.append(obj)
/gem5/src/mem/ruby/network/
H A DNetwork.hh145 Network(const Network& obj);
146 Network& operator=(const Network& obj);
188 operator<<(std::ostream& out, const Network& obj) argument
190 obj.print(out);
/gem5/ext/pybind11/include/pybind11/detail/
H A Dclass.h20 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj)
24 # define PYBIND11_SET_OLDPY_QUALNAME(obj, nameobj) setattr((PyObject *) obj, "__qualname__", nameobj)
40 extern "C" inline int pybind11_static_set(PyObject *self, PyObject *obj, PyObject *value) { argument
41 PyObject *cls = PyType_Check(obj) ? obj : (PyObject *) Py_TYPE(obj);
90 def __get__(self, obj, cls):
93 def __set__(self, obj, value):
94 cls = obj i
110 pybind11_meta_setattro(PyObject* obj, PyObject* name, PyObject* value) argument
147 pybind11_meta_getattro(PyObject *obj, PyObject *name) argument
464 pybind11_getbuffer(PyObject *obj, Py_buffer *view, int flags) argument
[all...]
/gem5/src/mem/ruby/common/
H A DHistogram.hh79 operator<<(std::ostream& out, const Histogram& obj) argument
81 obj.print(out);
H A DSubBlock.hh74 operator<<(std::ostream& out, const SubBlock& obj) argument
76 obj.print(out);
/gem5/src/sim/
H A Ddrain.hh152 void registerDrainable(Drainable *obj);
153 void unregisterDrainable(Drainable *obj);
H A Dinit.cc213 auto &obj = kv.second; local
214 if (obj->base.empty()) {
215 obj->init(m_m5);
217 pending.push_back(obj);
223 EmbeddedPyBind &obj = **it; local
224 if (obj.depsReady()) {
225 obj.init(m_m5);
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_object_manager.h89 void insert_event(const std::string& name, sc_event* obj);
90 void insert_object(const std::string& name, sc_object* obj);
/gem5/src/cpu/testers/directedtest/
H A DRubyDirectedTester.hh97 RubyDirectedTester(const RubyDirectedTester& obj);
98 RubyDirectedTester& operator=(const RubyDirectedTester& obj);
/gem5/src/mem/ruby/profiler/
H A DAccessTraceForAddress.hh81 operator<<(std::ostream& out, const AccessTraceForAddress& obj) argument
83 obj.print(out);
/gem5/tests/gem5/
H A Dfixture.py94 obj = cls.fixtures[target]
96 obj = super(UniqueFixture, cls).__new__(cls)
97 obj.lock = threading.Lock()
98 obj.target = target
99 cls.fixtures[target] = obj
100 return obj
129 obj = super(SConsFixture, cls).__new__(cls, target)
130 return obj
168 obj = super(Gem5Fixture, cls).__new__(cls, target)
169 return obj
[all...]
/gem5/src/systemc/tests/systemc/compliance_1666/test206/
H A Dtest206.cpp40 sc_object* obj; local
54 obj = h.get_process_object();
68 sc_assert (h.get_parent_object() == obj);
/gem5/src/mem/ruby/network/garnet2.0/
H A DGarnetNetwork.hh190 GarnetNetwork(const GarnetNetwork& obj);
191 GarnetNetwork& operator=(const GarnetNetwork& obj);
201 operator<<(std::ostream& out, const GarnetNetwork& obj) argument
203 obj.print(out);
H A Dflit.hh117 operator<<(std::ostream& out, const flit& obj) argument
119 obj.print(out);
/gem5/src/systemc/core/
H A Devent.cc69 Object *obj = Object::getFromScObject(parent); local
70 obj->addChildEvent(_sc_event);
97 Object *obj = Object::getFromScObject(parent); local
98 obj->delChildEvent(_sc_event);
/gem5/src/mem/ruby/structures/
H A DWireBuffer.cc46 operator<<(ostream& out, const WireBuffer& obj) argument
48 obj.print(out);
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.cpp60 if( sc_object* obj = object_cast(*it) )
61 objs_vec_->push_back( obj );
/gem5/src/mem/ruby/system/
H A DRubySystem.hh106 RubySystem(const RubySystem& obj);
107 RubySystem& operator=(const RubySystem& obj);
/gem5/src/gpu-compute/
H A Dhsail_code.hh213 const BrigObject *obj);
216 const BrigObject *obj);
255 const BrigObject *obj);
274 const BrigObject *obj);
341 const BrigObject *obj,
350 const BrigObject *obj, StorageMap *objStorageMap);
439 refLabel(const Brig::BrigDirectiveLabel *lbl, const BrigObject *obj) argument
441 return labelMap.refLabel(lbl, obj);

Completed in 27 milliseconds

1234567