Searched refs:String (Results 76 - 100 of 203) sorted by relevance

123456789

/gem5/ext/dsent/model/optical_graph/
H A DOpticalNode.h53 OpticalNode(Type type_, const String& instance_name_, OpticalModel* model_, const WavelengthGroup& wavelengths_);
60 const String& getInstanceName() const;
97 String m_instance_name_;
H A DOpticalWavelength.h50 OpticalWavelength(const String& instance_name_, const WavelengthGroup& wavelengths_);
55 const String& getInstanceName() const;
68 const String m_instance_name_;
/gem5/ext/dsent/model/timing_graph/
H A DElectricalTimingTree.h46 ElectricalTimingTree(const String& instance_name_, ElectricalModel* model_);
51 const String& getInstanceName() const;
86 const String m_instance_name_;
/gem5/src/arch/x86/bios/
H A DSMBios.py99 vendor = Param.String("", "vendor name string")
100 version = Param.String("", "version string")
103 release_date = Param.String("06/08/2008", "release date")
/gem5/src/arch/mips/
H A DMipsSystem.py40 console = Param.String("file that contains the console code")
42 hex_file_name = Param.String("test.hex","hex file that contains [address,data] pairs")
63 hex_file_name = Param.String('test.hex',"hex file that contains [address,data] pairs")
/gem5/ext/dsent/model/
H A DEventInfo.cc29 EventInfo::EventInfo(const String& event_name_, const Map<PortInfo*>* port_infos_)
40 const String& port_name = it->first;
50 const String& EventInfo::getEventName() const
55 void EventInfo::setTransitionInfo(const String& port_name_, const TransitionInfo& trans_info_)
64 void EventInfo::setStaticTransitionInfo(const String& port_name_)
99 const TransitionInfo& EventInfo::getTransitionInfo(const String& port_name_) const
/gem5/ext/dsent/model/electrical/
H A DMuxTreeSerializer.cc38 MuxTreeSerializer::MuxTreeSerializer(const String& instance_name_, const TechModel* tech_model_)
77 "(" + (String) (in_data_rate / out_data_rate) + ")!");
81 "[Error] " + getInstanceName() + " -> Input width (" + (String) in_bits + ") " +
82 "must be a multiple of the serialization ratio (" + (String) serialization_ratio + ")!");
118 String mux_tree_name = "MuxTree";
137 portConnect(mux_tree, "In" + (String) i, "InTmp", makeNetIndex(i*output_bits, (i+1)*output_bits-1));
140 portConnect(mux_tree, "Sel" + (String) i, "MuxSel", makeNetIndex(i));
153 const String& clk_div_dff_name = "ClkDivDFF_" + (String) i;
163 const String
[all...]
H A DBroadcastHTree.cc43 BroadcastHTree::BroadcastHTree(const String& instance_name_, const TechModel* tech_model_)
93 const String& wire_layer = getParameter("WireLayer");
144 StdCell* repeater = getTechModel()->getStdCellLib()->createStdCell("INV", "Repeater" + (String)i);
145 ElectricalLoad* repeater_load = new ElectricalLoad("RepeaterIn_Cap" + (String)i, this);
146 ElectricalTimingTree* timing_tree = new ElectricalTimingTree("RepeatedLink" + (String)i, this);
181 const String& wire_layer = getParameter("WireLayer");
205 Log::printLine(getInstanceName() + " -> Beginning Repeater Insertion " + (String)i);
218 Log::printLine(getInstanceName() + " -> Repeater Insertion Iteration " + (String)iteration +
219 ": Required transition = " + (String)required_transition +
220 ", Transition = " + (String)transitio
[all...]
H A DBarrelShifter.h34 BarrelShifter(const String& instance_name_, const TechModel* tech_model_);
H A DDFFRAM.h33 DFFRAM(const String& instance_name_, const TechModel* tech_model_);
H A DDecoder.h33 Decoder(const String& instance_name_, const TechModel* tech_model_);
H A DDemuxTreeDeserializer.h33 DemuxTreeDeserializer(const String& instance_name_, const TechModel* tech_model_);
H A DMatrixArbiter.h33 MatrixArbiter(const String& instance_name_, const TechModel* tech_model_);
H A DMultiplexer.h34 Multiplexer(const String& instance_name_, const TechModel* tech_model_);
H A DMuxTreeSerializer.h33 MuxTreeSerializer(const String& instance_name_, const TechModel* tech_model_);
H A DOR.h36 OR(const String& instance_name_, const TechModel* tech_model_);
H A DRippleAdder.h33 RippleAdder(const String& instance_name_, const TechModel* tech_model_);
/gem5/ext/dsent/model/optical/
H A DRingDetector.h35 static const String INTEGRATINGSENSEAMP;
38 RingDetector(const String& instance_name_, const TechModel* tech_model_);
/gem5/src/mem/ruby/network/
H A DBasicLink.py58 src_outport = Param.String("", "Outport direction at src router")
59 dst_inport = Param.String("", "Inport direction at dst router")
/gem5/src/arch/alpha/
H A DAlphaSystem.py37 console = Param.String("file that contains the console code")
38 pal = Param.String("file that contains palcode")
/gem5/src/cpu/trace/
H A DTraceCPU.py65 instTraceFile = Param.String("", "Instruction trace file")
66 dataTraceFile = Param.String("", "Data dependency trace file")
/gem5/ext/dsent/model/std_cells/
H A DXOR2.cc41 XOR2::XOR2(const String& instance_name_, const TechModel* tech_model_)
102 String cell_name = "XOR2_X" + (String) drive_strength;
132 String cell_name = "XOR2_X" + (String) drive_strength;
207 (String) Y_prob_00 + ", " + (String) Y_prob_01 + ", " + (String) Y_prob_11 + ")!");
223 String cell_name = "XOR2_X" + (String) drive_strength
[all...]
H A DOR2.cc40 OR2::OR2(const String& instance_name_, const TechModel* tech_model_)
98 const String& cell_name = "OR2_X" + (String) drive_strength;
126 const String& cell_name = "OR2_X" + (String) drive_strength;
187 "Output transition probabilities must add up to 1 (" + (String) Y_prob_00 + ", " +
188 (String) Y_prob_01 + ", " + (String) Y_prob_11 + ")!");
204 const String& cell_name = "OR2_X" + (String) drive_strength
[all...]
H A DMUX2.cc41 MUX2::MUX2(const String& instance_name_, const TechModel* tech_model_)
109 String cell_name = "MUX2_X" + (String) drive_strength;
141 String cell_name = "MUX2_X" + (String) drive_strength;
225 (String) Y_prob_00 + ", " + (String) Y_prob_01 + ", " + (String) Y_prob_11 + ")!");
242 String cell_name = "MUX2_X" + (String) drive_strength
[all...]
/gem5/ext/dsent/util/
H A DResult.cc34 Result::SubResult::SubResult(const Result* sub_result_, const String& producer_, double num_results_)
41 ASSERT((num_results_ >= 0), "Internal error: num_results_ (" + String(num_results_) + ") is less than 0");
52 const String& Result::SubResult::getProducer() const
74 Result::Result(const String& result_name_)
89 const String& Result::getName() const
113 void Result::addSubResult(const Result* sub_result_, const String& result_producer_, double num_results_)
149 void Result::print(const String& prepend_str_, int detail_level_, ostream& ost_) const
175 void Result::print(const String& prepend_str_, double num_results_, int detail_level_, ostream& ost_) const
185 const String& temp_producer = temp_sub_result->getProducer();
186 const String
[all...]

Completed in 22 milliseconds

123456789