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

12

/gem5/src/base/stats/
H A Doutput.hh60 struct Output struct in namespace:Stats
62 virtual ~Output() {}
H A Dtext.hh56 class Text : public Output
94 // Implement Output
102 Output *initText(const std::string &filename, bool desc);
H A Dhdf5.hh56 class Hdf5 : public Output
66 public: // Output interface
153 std::unique_ptr<Output> initHDF5(
H A Dinfo.hh69 struct Output;
137 virtual void visit(Output &visitor) = 0;
H A Dhdf5.cc317 std::unique_ptr<Output>
321 return std::unique_ptr<Output>(
/gem5/src/python/pybind11/
H A Dstats.cc101 py::class_<Stats::Output>(m, "Output")
102 .def("begin", &Stats::Output::begin)
103 .def("end", &Stats::Output::end)
104 .def("valid", &Stats::Output::valid)
105 .def("beginGroup", &Stats::Output::beginGroup)
106 .def("endGroup", &Stats::Output::endGroup)
/gem5/ext/sst/
H A Dgem5.hh67 Output dbg;
68 Output info;
H A DExtMaster.hh77 Output& out;
100 ExtMaster(gem5Component*, Output&, ExternalMaster&, std::string&);
H A DExtSlave.hh89 Output &out;
101 ExtSlave(gem5Component*, Output&, ExternalSlave&, std::string&);
H A Dgem5.cc77 (Output::output_location_t)params.find<int>("comp_debug", 0));
78 info.init("gem5:" + getName() + ": ", 0, 0, Output::STDOUT);
H A DExtSlave.cc55 ExtSlave::ExtSlave(gem5Component *g5c, Output &out,
H A DExtMaster.cc59 ExtMaster::ExtMaster(gem5Component *g, Output &o, ::ExternalMaster& p,
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test4/
H A Dtest4.cpp175 sc_signal<int> Output; local
178 watcher W("W", Gate, clock1, dclock, Output);
180 trigp T("T", dclock, Output);
186 sc_trace(tf, Output, "Out");
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test5/
H A Dtest5.cpp174 sc_signal<int> Output; local
177 watcher W("W", Gate, clock1, dclock, Output);
179 trigp T("T", dclock, Output);
185 sc_trace(tf, Output, "Out");
/gem5/src/cpu/minor/
H A Dfetch2.hh68 Latch<ForwardLineData>::Output inp;
72 Latch<BranchData>::Output branchInp;
74 /** Output port carrying predictions back to Fetch1 */
77 /** Output port carrying instructions into Decode */
205 Latch<ForwardLineData>::Output inp_,
206 Latch<BranchData>::Output branchInp_,
H A Ddecode.hh69 Latch<ForwardInstData>::Output inp;
70 /** Output port carrying micro-op decomposed instructions to Execute */
144 Latch<ForwardInstData>::Output inp_,
H A Dfetch1.hh195 Latch<BranchData>::Output inp;
196 /** Output port carrying read lines to Fetch2 */
199 Latch<BranchData>::Output prediction;
388 Latch<BranchData>::Output inp_,
390 Latch<BranchData>::Output prediction_,
H A Dexecute.hh66 Latch<ForwardInstData>::Output inp;
320 Latch<ForwardInstData>::Output inp_,
H A Dbuffers.hh214 /** Wraps a MinorBuffer with Input/Output interfaces to ensure that units
258 class Output class in class:Minor::Latch
264 Output(typename Buffer::wire output_wire) : function in class:Minor::Latch::Output
275 Output output() { return Output(buffer.getWire(-delay)); }
H A Dfetch2.cc58 Latch<ForwardLineData>::Output inp_,
59 Latch<BranchData>::Output branchInp_,
492 /* Output MinorTrace instruction info for
/gem5/ext/pybind11/tests/
H A Dconftest.py41 class Output(object): class in inherits:object
61 class Unordered(Output):
87 a = Output(self.out)
107 return Output(self.err)
H A Dconstructor_stats.h237 template <class T, typename... Output>
238 void print_constr_details(T *inst, const std::string &action, Output &&...output) {
240 format_ptrs(std::forward<Output>(output))...);
/gem5/util/systemc/gem5_within_systemc/
H A Dstats.cc79 Stats::Output *output = Stats::initText(filename, desc);
/gem5/src/systemc/tests/systemc/examples/aes/
H A Daes.cpp268 void Output(void);
324 AES_Decrypt::Output(void) function in class:AES_Decrypt
345 //Dump_R("AES_Descrypt::Output R", R);
384 (void)Output();
700 void Output(void);
754 AES_Encrypt::Output(void) function in class:AES_Encrypt
776 //Dump_R("AES_Encrypt::Output R", R);
814 (void)Output();
/gem5/src/base/
H A Dbitunion.test.cc274 TEST_F(BitUnionData, Output)

Completed in 44 milliseconds

12