Searched refs:dt (Results 1 - 25 of 25) sorted by relevance

/gem5/ext/mcpat/cacti/
H A Dbasic_circuit.cc96 const TechnologyParameter::DeviceType * dt; local
99 dt = &g_tp.dram_acc; //DRAM cell access transistor
101 dt = &g_tp.dram_wl; //DRAM wordline transistor
103 dt = &g_tp.sram_cell; // SRAM cell access transistor
105 dt = &g_tp.peri_global;
108 return (dt->C_g_ideal + dt->C_overlap + 3*dt->C_fringe)*width + dt->l_phy*Cpolywire;
121 const TechnologyParameter::DeviceType * dt; local
148 const TechnologyParameter::DeviceType * dt; local
217 const TechnologyParameter::DeviceType * dt; local
245 const TechnologyParameter::DeviceType * dt; local
306 TechnologyParameter::DeviceType * dt; local
324 TechnologyParameter::DeviceType * dt; local
354 TechnologyParameter::DeviceType * dt; local
371 TechnologyParameter::DeviceType * dt; local
388 TechnologyParameter::DeviceType * dt; local
[all...]
H A Dcrossbar.h54 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global));
H A Darbiter.h53 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global));
H A Dwire.h55 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global));
62 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global)
H A Dhtree2.h53 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global));
H A Dnuca.h78 TechnologyParameter::DeviceType *dt);
H A Darbiter.cc39 TechnologyParameter::DeviceType *dt
41 o_len (output_len), deviceType(dt) {
43 Vdd = dt->Vdd;
H A Drouter.h57 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global),
H A Dcrossbar.cc42 TechnologyParameter::DeviceType *dt
43 ): n_inp(n_inp_), n_out(n_out_), flit_size(flit_size_), deviceType(dt) {
45 Vdd = dt->Vdd;
H A Drouter.cc41 TechnologyParameter::DeviceType *dt,
46 deviceType(dt),
55 Vdd = dt->Vdd;
37 Router( double flit_size_, double vc_buf, double vc_c, TechnologyParameter::DeviceType *dt, double I_, double O_, double M_ ) argument
H A Dwire.cc44 TechnologyParameter::DeviceType *dt
47 resistivity(resistivity), deviceType(dt) {
83 TechnologyParameter::DeviceType *dt) {
86 deviceType = dt;
82 Wire(double w_s, double s_s, enum Wire_placement wp, double resis, TechnologyParameter::DeviceType *dt) argument
H A Dnuca.cc48 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global)
49 ): deviceType(dt) {
H A Dhtree2.cc45 bool uca_tree_, bool search_tree_, TechnologyParameter::DeviceType *dt)
52 deviceType(dt) {
41 Htree2( enum Wire_type wire_model, double mat_w, double mat_h, int a_bits, int d_inbits, int search_data_in, int d_outbits, int search_data_out, int bl, int wl, enum Htree_type htree_type, bool uca_tree_, bool search_tree_, TechnologyParameter::DeviceType *dt) argument
/gem5/src/systemc/tests/systemc/misc/gnats/pr-503/
H A Dpr-503.cpp84 sc_int<16> dt; local
125 dt = 0;
169 dt = 0;
172 EXC_DATA = dt;
189 EXC_DATA = dt;
204 dt = 0;
206 dt = 16;
212 EXC_DATA = dt;
229 EXC_DATA = dt;
351 dt
[all...]
/gem5/src/systemc/tests/systemc/misc/gnats/pr-503-neg/
H A Dpr-503-neg.cpp84 sc_int<16> dt; local
125 dt = 0;
169 dt = 0;
172 EXC_DATA = dt;
189 EXC_DATA = dt;
204 dt = 0;
206 dt = 16;
212 EXC_DATA = dt;
229 EXC_DATA = dt;
351 dt
[all...]
/gem5/ext/pybind11/docs/
H A Dbenchmark.py4 import datetime as dt
80 n1 = dt.datetime.now()
84 n2 = dt.datetime.now()
/gem5/ext/mcpat/
H A Dinterconnect.h104 TechnologyParameter::DeviceType *dt = &(g_tp.peri_global));
H A Dinterconnect.cc53 TechnologyParameter::DeviceType *dt)
60 deviceType(dt) {
43 Interconnect(XMLNode* _xml_data, string name_, enum Device_ty device_ty_, double base_w, double base_h, int data_w, double len, const InputParameter *configure_interface, int start_wiring_level_, double _clockRate, bool pipelinable_, double route_over_perc_, bool opt_local_, enum Core_type core_ty_, enum Wire_type wire_model, double width_s, double space_s, TechnologyParameter::DeviceType *dt) argument
/gem5/src/arch/mips/
H A Dmt_constants.hh89 Bitfield<20> dt; member in namespace:MipsISA
H A Dmt.hh207 tidTCStatus.dt = 1;
290 if (vpeControl.ysi == 1 && tcStatus.dt == 1 ) {
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtest_endian_conv.cpp44 template<int SIZE> class dt { class
51 case 1: function<dt<1> >(&txn,bus_width); break; \
52 case 2: function<dt<2> >(&txn,bus_width); break; \
53 case 4: function<dt<4> >(&txn,bus_width); break; \
54 case 8: function<dt<8> >(&txn,bus_width); break; \
55 case 16: function<dt<16> >(&txn,bus_width); break; \
56 case 32: function<dt<32> >(&txn,bus_width); break; \
/gem5/ext/pybind11/tests/
H A Dtest_methods_and_attributes.cpp453 m.def("custom_caster_no_destroy", []() { static auto *dt = new DestructionTester(); return dt; });
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h554 array(const pybind11::dtype &dt, ShapeContainer shape, StridesContainer strides,
558 *strides = c_strides(*shape, dt.itemsize());
563 auto descr = dt;
591 array(const pybind11::dtype &dt, ShapeContainer shape, const void *ptr = nullptr, handle base = handle())
592 : array(dt, std::move(shape), {}, ptr, base) { }
595 array(const pybind11::dtype &dt, T count, const void *ptr = nullptr, handle base = handle())
596 : array(dt, {{count}}, ptr, base) { }
/gem5/src/dev/arm/
H A DRealView.py1091 dt = list(super(VExpress_GEM5_Base, self).generateDeviceTree(state))
1092 if len(dt) > 1:
1094 node = dt[0]
/gem5/src/python/m5/
H A DSimObject.py1675 for dt in item.generateDeviceTree(state):
1676 yield dt

Completed in 63 milliseconds