Searched refs:output (Results 26 - 50 of 92) sorted by relevance

1234

/gem5/util/systemc/systemc_within_gem5/systemc_sc_main/
H A Dsc_main.cc62 sc_core::sc_out<const char *> output; member in class:Feeder
83 output = strings[i];
101 feeder.output(buf);
/gem5/util/
H A Dqdo54 help='command stderr output file')
56 help='command stdout output file')
58 help='save oarsub output log file')
105 # full_output accumulates the full output of the session
124 # Returns a string containing the output of the command.
132 output = self.before.rstrip()
133 return output
136 # Returns a (string, int) tuple with the command output and the status.
139 output = self.do_bare_command(cmd, timeout)
142 return (output, statu
[all...]
H A Dfind_copyrights.py102 output = set()
108 output.add(i)
112 output.add(date)
116 return output
179 output = []
182 output.append('%d' % (first))
184 output.append('%d-%d' % (first, second))
199 return ','.join(output)
/gem5/util/batch/
H A Dbatch.py32 def __init__(self, cmd, input = None, output = None, bufsize = -1):
50 if output is None:
55 if isinstance(output, file):
56 c2p_write = output.fileno()
57 elif isinstance(output, str):
58 output = file(output, 'w')
59 c2p_write = output.fileno()
60 elif isinstance(output, int):
61 c2p_write = output
[all...]
/gem5/util/pbs/
H A Dpbs.py32 def __init__(self, cmd, input = None, output = None, bufsize = -1):
50 if output is None:
55 if isinstance(output, file):
56 c2p_write = output.fileno()
57 elif isinstance(output, str):
58 output = file(output, 'w')
59 c2p_write = output.fileno()
60 elif isinstance(output, int):
61 c2p_write = output
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dpump.py656 def RunAtomicCode(env, node, output):
678 RunCode(new_env, node.code, output)
680 output.Append(sep)
682 output.Append(node.raw_code.value)
686 RunCode(env.Clone(), node.then_branch, output)
688 RunCode(env.Clone(), node.else_branch, output)
691 output.Append('%s' % (value,))
693 output.Append('$')
695 RunCode(env.Clone(), node, output)
702 def RunCode(env, code_node, output)
[all...]
/gem5/src/cpu/minor/
H A Dpipeline.cc71 dToE.output(), eToF1.input()),
73 f2ToD.output(), dToE.input(), execute.inputBuffer),
75 f1ToF2.output(), eToF1.output(), f2ToF1.input(), f2ToD.input(),
78 eToF1.output(), f1ToF2.input(), f2ToF1.output(), fetch2.inputBuffer),
/gem5/src/systemc/tests/systemc/misc/stars/star110672/
H A Ddesign.h47 sc_out<DATA_TYPE > output; local
/gem5/ext/googletest/googletest/test/
H A Dgtest_catch_exceptions_test.py35 Google Test) and verifies their output.
71 [EXE_PATH, LIST_TESTS_FLAG], env=environ).output
76 BINARY_OUTPUT = gtest_test_utils.Subprocess([EXE_PATH], env=environ).output
79 [EX_EXE_PATH], env=environ).output
229 env=environ).output
H A Dgtest_uninitialized_test.py55 """Runs the given command and verifies its exit code and output."""
61 Assert('InitGoogleTest' in p.output)
H A Dgtest_filter_unittest.py60 # os.environ. We then use 'eval' to parse the child's output so that an
65 CAN_PASS_EMPTY_ENV = eval(child.output)
72 # We use 'eval' to parse the child's output so that an exception
78 CAN_UNSET_ENV = eval(child.output)
108 # Regex for parsing test case names from Google Test's output.
111 # Regex for parsing test names from Google Test's output.
114 # The command line flag to tell Google Test to output the list of tests it
120 [COMMAND, LIST_TESTS_FLAG]).output
182 """Runs the test program and returns its output."""
185 env=environ).output
[all...]
/gem5/src/arch/sparc/insts/
H A Dnop.cc39 output header {{
64 output decoder {{
/gem5/src/python/pybind11/
H A Ddebug.cc52 #include "base/output.hh"
63 output(const char *filename) function
114 .def("output", &output)
/gem5/src/dev/x86/
H A Di8259.hh51 std::vector<IntSourcePin<I8259> *> output; member in class:X86ISA::I8259
100 else if (if_name == "output")
101 return *output.at(idx);
/gem5/util/stats/
H A Dprofile.py29 import output
64 def display(self, output=None, limit=None, maxsymlen=None):
65 if not output:
67 output = sys.stdout
68 elif isinstance(output, str):
69 output = file(output, 'w')
84 print >>output, symbolf % (name, 100.0 * (float(number) / total))
207 def displayx(self, output=None, maxcount=None):
208 if output i
[all...]
H A Ddisplay.py72 output = "%-40s %12s %8s %8s" % (self.name, value, pdf, cdf)
75 output = "%s # %s" % (output, self.desc)
77 return output
H A Dprint.py75 output = "%-40s %12s %8s %8s" % (self.name, value, pdf, cdf)
78 output = "%s # %s" % (output, self.desc)
80 return output
/gem5/src/systemc/utils/
H A Dvcd.cc140 virtual void output(std::ostream &os) = 0;
159 VcdTraceScope::output(const std::string &name, std::ostream &os) function in class:sc_gem5::VcdTraceScope
171 // Accellera output.
187 p.second->output(p.first, os);
250 topScope.output("SystemC", stream());
267 tv->output(stream());
318 tv->output(stream());
331 output(std::ostream &os) override
352 output(std::ostream &os) override
375 output(st
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h100 OutputIterator output) {
101 for (; first != last; ++first, ++output) {
102 *output = *first;
104 return output;
98 CopyElements(InputIterator first, InputIterator last, OutputIterator output) argument
/gem5/src/base/
H A Dbitfield.hh184 T output = 0; local
186 output = (output << 8) | reverseLookUpTable[val & 0xFF];
189 return output;
H A Dcoroutine.test.cc119 const std::vector<int> output{ 1, 2, 3 };
120 const std::vector<int> expected_values = output;
123 [&output] (Coroutine<void, int>::CallerType& yield)
125 for (const auto ret : output) {
/gem5/ext/sst/
H A Dgem5.cc100 dbg.output(CALL_INFO, "Command string: [sst.x %s --initialize-only]\n",
103 dbg.output(CALL_INFO, " Arg [%02zu] = %s\n", i, args[i]);
110 dbg.output(CALL_INFO, " Setting Debug Flag [%s]\n", flag);
163 info.output("Complete. Clocks Processed: %" PRIu64"\n", clocks_processed);
169 dbg.output(CALL_INFO, "Cycle %lu\n", cycle);
178 info.output("exiting: curTick()=%lu cause=`%s` code=%d\n",
/gem5/src/sim/
H A Dfd_array.cc46 #include "base/output.hh"
50 FDArray::FDArray(std::string const& input, std::string const& output, argument
52 : _fdArray(), _input(input), _output(output), _errout(errout),
78 * Search through the output/error options and setup the default fd if
79 * match is found; otherwise, open an output file and seek to location.
81 if ((it = _oemap.find(output)) != _oemap.end())
84 sim_fd = openOutputFile(output);
87 output, false);
90 if (output == errout)
168 * Search through the output option
[all...]
/gem5/ext/pybind11/tools/
H A Dmkdoc.py193 def extract(filename, node, prefix, output):
204 extract(filename, i, sub_prefix, output)
213 output.append((name, filename, comment))
217 def __init__(self, filename, parameters, output):
221 self.output = output
230 extract(self.filename, tu.cursor, '', self.output)
285 output = []
287 thr = ExtractionThread(filename, parameters, output)
294 return output
[all...]
/gem5/src/python/m5/stats/
H A D__init__.py373 for output in outputList:
374 if output.valid():
375 output.begin()
376 _dump_to_visitor(output, root=root)
377 output.end()

Completed in 32 milliseconds

1234