Searched refs:net_indices_ (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/dsent/model/
H A DElectricalModel.h85 void createInputPort(const String& name_, const NetIndex& net_indices_ = NetIndex(0, 0));
90 void createOutputPort(const String& name_, const NetIndex& net_indices_ = NetIndex(0, 0));
96 void createNet(const String& name_, const NetIndex& net_indices_);
H A DElectricalModel.cc362 void ElectricalModel::createInputPort(const String& name_, const NetIndex& net_indices_) argument
366 createNet(name_, net_indices_);
368 m_input_ports_->set(name_, new PortInfo(name_, net_indices_));
373 void ElectricalModel::createOutputPort(const String& name_, const NetIndex& net_indices_) argument
377 createNet(name_, net_indices_);
379 m_output_ports_->set(name_, new PortInfo(name_, net_indices_));
392 void ElectricalModel::createNet(const String& name_, const NetIndex& net_indices_) argument
398 int start = net_indices_.first;
399 int end = net_indices_.second;
410 m_net_references_->set(name_, net_indices_);
[all...]

Completed in 7 milliseconds