Searched refs:init (Results 51 - 75 of 368) sorted by relevance

1234567891011>>

/gem5/src/gpu-compute/
H A Dfetch_unit.hh59 void init(ComputeUnit *cu);
H A Dfetch_stage.hh59 void init(ComputeUnit *cu);
H A Dschedule_stage.hh62 void init(ComputeUnit *cu);
/gem5/src/systemc/ext/tlm_core/1/req_rsp/channels/fifo/
H A Dfifo.hh52 init(size_);
58 init(size_);
138 void init(int);
181 // init and update
187 tlm_fifo<T>::init(int size_) function in class:tlm::tlm_fifo
/gem5/src/mem/
H A Dcomm_monitor.cc72 CommMonitor::init() function in class:CommMonitor
167 .init(params->burst_length_bins)
171 .init(params->burst_length_bins)
176 .init(params->bandwidth_bins)
187 .init(params->bandwidth_bins)
198 .init(params->latency_bins)
202 .init(params->latency_bins)
206 .init(1, params->itt_max_bin, params->itt_max_bin /
211 .init(1, params->itt_max_bin, params->itt_max_bin /
216 .init(
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp191 .def(py::init<int>())
198 .def(py::init<int, int>());
201 .def(py::init<int, int>());
206 .def(py::init<>())
241 .def(py::init<>())
264 .def(py::init([](int) { return new PyA2(); }))
272 .def(py::init<>())
313 .def(py::init<const std::string &>())
448 .def(py::init<>())
453 .def(py::init<>())
[all...]
H A Dtest_call_policies.cpp44 .def(py::init<>());
55 .def(py::init<>())
56 .def(py::init([](Child *) { return new Parent(); }), py::keep_alive<1, 2>())
71 .def(py::init<>());
H A Dtest_class.cpp79 .def(py::init<std::string, std::string>())
85 .def(py::init<std::string>());
89 .def(py::init<std::string>());
93 .def(py::init<std::string>());
111 py::class_<BaseClass>(m, "BaseClass").def(py::init<>());
112 py::class_<DerivedClass1>(m, "DerivedClass1").def(py::init<>());
113 py::class_<DerivedClass2>(m, "DerivedClass2").def(py::init<>());
185 .def(py::init<UserType>());
243 py::class_<HasOpNewDel>(m, "HasOpNewDel").def(py::init<>());
244 py::class_<HasOpNewDelSize>(m, "HasOpNewDelSize").def(py::init<>());
[all...]
H A Dpybind11_tests.h16 test_initializer(Initializer init);
17 test_initializer(const char *submodule_name, Initializer init);
H A Dtest_opaque_types.cpp26 .def(py::init<>())
41 .def(py::init<>())
H A Dtest_tagbased_polymorphic.cpp120 .def(py::init<std::string>())
124 .def(py::init<std::string, int>(), "name"_a, "excitement"_a = 9001)
127 .def(py::init<std::string>())
130 .def(py::init<std::string>())
133 .def(py::init<std::string>())
H A Dtest_operator_overloading.cpp89 .def(py::init<float, float>())
118 .def(py::init<>())
122 .def(py::init<>())
131 .def(py::init<>())
139 .def(py::init<>())
152 .def(py::init<>())
163 .def(py::init<>())
H A Dtest_smart_ptr.cpp107 .def(py::init<int>());
138 .def(py::init<int>());
157 .def(py::init<int>());
186 .def(py::init<int>())
203 .def(py::init<int>())
213 .def(py::init<int>());
223 .def(py::init<int>())
241 .def(py::init<>())
266 .def(py::init<>())
334 .def(py::init<>())
[all...]
/gem5/src/arch/hsail/
H A Doperand.hh109 bool init(unsigned opOffset, const BrigObject *obj,
126 init(unsigned opOffset, const BrigObject *obj) function in class:SRegOperand
131 return BaseRegOperand::init(opOffset, obj, maxRegIdx, 's');
231 init(unsigned opOffset, const BrigObject *obj) function in class:DRegOperand
236 return BaseRegOperand::init(opOffset, obj, maxRegIdx, 'd');
295 init(unsigned opOffset, const BrigObject *obj) function in class:CRegOperand
300 return BaseRegOperand::init(opOffset, obj, maxRegIdx, 'c');
355 bool init(unsigned opOffset, const BrigObject *obj);
390 ImmOperand<T>::init(unsigned opOffset, const BrigObject *obj) function in class:ImmOperand
446 return init(*data_offse
531 RegOrImmOperand<RegOperand, T>::init(unsigned opOffset, const BrigObject *obj) function in class:RegOrImmOperand
618 RegAddrOperand<RegOperandType>::init(unsigned opOffset, const BrigObject *obj) function in class:RegAddrOperand
[all...]
/gem5/util/stats/
H A Dchart.py48 self.init(options, **kwargs)
53 def init(self, options=None, **kwargs): member in class:ChartOptions
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_bv_base.h82 void init( int length_, bool init_value = false );
97 { init( length_ ); }
102 { init( length_, a ); }
111 { init( a.back_cast().length() ); base_type::assign_( a ); }
119 { init( a.length() ); base_type::assign_( a ); }
123 { init( a.length() ); base_type::assign_( a ); }
127 { init( a.length() ); base_type::assign_( a ); }
131 { init( a.length() ); base_type::assign_( a ); }
H A Dsc_lv_base.cpp72 sc_lv_base::init( int length_, const sc_logic& init_value ) function in class:sc_dt::sc_lv_base
122 init( s.length() - 1 );
129 init( length_ );
/gem5/src/systemc/tests/systemc/utils/sc_vector/test02/
H A Dtest02.cpp102 arr.init( 3, fill_array );
104 sigs.init( inps.size()
/gem5/src/mem/qos/
H A DQoSPolicy.py68 def init(self): member in class:QoSFixedPriorityPolicy
70 print("Error, use setMasterPriority to init masters/priorities\n");
105 def init(self): member in class:QoSPropFairPolicy
107 print("Error, use setInitialScore to init masters/scores\n");
/gem5/src/systemc/ext/tlm_core/2/interfaces/
H A Ddmi.hh45 tlm_dmi() { init(); }
48 init() function in class:tlm::tlm_dmi
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_clock.cpp66 init( sc_time::from_value(simcontext()->m_time_params->default_time_unit),
83 init( sc_time::from_value(simcontext()->m_time_params->default_time_unit),
104 init( period_,
130 init( sc_time( period_v_, period_tu_, simcontext() ),
154 init( sc_time( period_v_, period_tu_, simcontext() ),
195 init( ( period_ * default_time ),
302 sc_clock::init( const sc_time& period_, function in class:sc_core::sc_clock
/gem5/src/arch/alpha/
H A Dkernel_stats.cc66 .init(256)
84 .init(cpu_mode_num)
93 .init(cpu_mode_num)
112 .init(cpu_mode_num)
126 .init(32)
133 .init(32)
140 .init(32)
/gem5/src/systemc/dt/bit/
H A Dsc_lv_base.cc90 sc_lv_base::init(int length_, const sc_logic& init_value) function in class:sc_dt::sc_lv_base
138 init(s.length() - 1);
145 init(length_);
/gem5/src/cpu/simple/probes/
H A Dsimpoint.hh81 virtual void init();
/gem5/src/cpu/minor/
H A Dstats.cc87 .init(baseCpu.numThreads, Enums::Num_OpClass)

Completed in 32 milliseconds

1234567891011>>