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

1234

/gem5/ext/googletest/googlemock/test/
H A Dgmock_output_test.py32 """Tests the text output of Google C++ Mocking Framework.
65 def RemoveReportHeaderAndFooter(output):
66 """Removes Google Test result report's header and footer from the output."""
68 output = re.sub(r'.*gtest_main.*\n', '', output)
69 output = re.sub(r'\[.*\d+ tests.*\n', '', output)
70 output = re.sub(r'\[.* test environment .*\n', '', output)
71 output
[all...]
/gem5/src/python/m5/
H A Dtrace.py33 from _m5.trace import output, ignore, disable, enable
/gem5/ext/googletest/googletest/test/
H A Dgtest_output_test.py32 """Tests the text output of Google C++ Testing Framework.
90 """Removes all file location info from a Google Test program's output.
93 test_output: the output of a Google Test program.
96 output with all file location info (in the form of
105 def RemoveStackTraceDetails(output):
106 """Removes all stack traces from a Google Test program's output."""
110 'Stack trace: (omitted)\n\n', output)
113 def RemoveStackTraces(output):
114 """Removes all traces of stack traces from a Google Test program's output."""
117 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
[all...]
H A Dgtest_help_test.py62 [PROGRAM_PATH, LIST_TESTS_FLAG]).output
74 FLAG_PREFIX + r'output=.*' +
85 the exit code and the text output as a tuple.
95 return child.exit_code, child.output
111 exit_code, output = RunWithFlag(flag)
113 self.assert_(HELP_REGEX.search(output), output)
116 self.assert_(STREAM_RESULT_TO_FLAG in output, output)
118 self.assert_(STREAM_RESULT_TO_FLAG not in output, outpu
[all...]
H A Dgtest_list_tests_unittest.py54 # The expected output when running gtest_list_tests_unittest_ with
98 # The expected output when running gtest_list_tests_unittest_ with
121 capture_stderr=False).output
137 output after running command;
158 output = Run(args)
162 expected_output_re.match(output),
163 ('when %s is %s, the output of "%s" is "%s",\n'
165 (LIST_TESTS_FLAG, flag_expression, ' '.join(args), output,
169 not EXPECTED_OUTPUT_NO_FILTER_RE.match(output),
170 ('when %s is %s, the output o
[all...]
H A Dgtest-options_test.cc70 GTEST_FLAG(output) = "";
75 GTEST_FLAG(output) = "xml:filename";
80 GTEST_FLAG(output) = "";
86 GTEST_FLAG(output) = "xml:filename.abc";
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
145 GTEST_FLAG(output) = "";
152 GTEST_FLAG(output) = "xml";
159 GTEST_FLAG(output) = "xml:filename.abc";
166 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
183 GTEST_FLAG(output)
[all...]
/gem5/ext/googletest/googlemock/scripts/
H A Dgmock-config.in28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
294 # Do the output in the correct order so that these can be used in-line of
296 output=""
297 test "$echo_cppflags" = "yes" && output="$output $gmock_cppflags"
298 test "$echo_cxxflags" = "yes" && output="$output $gmock_cxxflags"
299 test "$echo_ldflags" = "yes" && output="$output
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dgtest-config.in28 Compiler flag queries output the union of the sets of flags when combined.
182 # Compiler flag output
265 # Do the output in the correct order so that these can be used in-line of
267 output=""
268 test "$echo_cppflags" = "yes" && output="$output $gtest_cppflags"
269 test "$echo_cxxflags" = "yes" && output="$output $gtest_cxxflags"
270 test "$echo_ldflags" = "yes" && output="$output
[all...]
/gem5/src/arch/arm/insts/
H A Dcrypto.hh84 void aesSubBytes(uint8_t *output, uint8_t *input);
85 void aesInvSubBytes(uint8_t *output, uint8_t *input);
86 void aesShiftRows(uint8_t *output, uint8_t *input);
87 void aesInvShiftRows(uint8_t *output, uint8_t *input);
88 void aesAddRoundKey(uint8_t *output, uint8_t *input, uint8_t *key);
121 void sha1Op(uint8_t *output, uint8_t *input, uint8_t *input2, SHAOp op);
124 void load2Reg(uint32_t *X, uint32_t *Y, uint8_t *output, uint8_t *input);
126 uint8_t *output, uint8_t *input, uint8_t *input2);
127 void store1Reg(uint8_t *output, uint32_t *X);
130 void aesMixColumns(uint8_t *output, uint8_
[all...]
H A Dcrypto.cc181 Crypto::aesSubBytes(uint8_t *output, uint8_t *input) argument
184 output[i] = aesSBOX[input[i]];
189 Crypto::aesInvSubBytes(uint8_t *output, uint8_t *input) argument
192 output[i] = aesInvSBOX[input[i]];
197 Crypto::aesShiftRows(uint8_t *output, uint8_t *input) argument
200 output[i] = input[aesSHIFT[i]];
205 Crypto::aesInvShiftRows(uint8_t *output, uint8_t *input) argument
208 output[i] = input[aesINVSHIFT[i]];
213 Crypto::aesAddRoundKey(uint8_t *output, uint8_t *input, argument
217 output[
222 aesMixColumns(uint8_t *output, uint8_t *input) argument
240 aesInvMixColumns(uint8_t *output, uint8_t *input) argument
256 aesEncrypt(uint8_t *output, uint8_t *input, uint8_t *key) argument
267 aesDecrypt(uint8_t *output, uint8_t *input, uint8_t *key) argument
322 sha256H( uint8_t *output, uint8_t *input, uint8_t *input2) argument
334 sha256H2( uint8_t *output, uint8_t *input, uint8_t *input2) argument
346 sha256Su0(uint8_t *output, uint8_t *input) argument
369 sha256Su1( uint8_t *output, uint8_t *input, uint8_t *input2) argument
396 sha1Op( uint8_t *output, uint8_t *input, uint8_t *input2, SHAOp op) argument
409 sha1C( uint8_t *output, uint8_t *input, uint8_t *input2) argument
418 sha1P( uint8_t *output, uint8_t *input, uint8_t *input2) argument
427 sha1M( uint8_t *output, uint8_t *input, uint8_t *input2) argument
436 sha1H(uint8_t *output, uint8_t *input) argument
445 sha1Su0( uint8_t *output, uint8_t *input, uint8_t *input2) argument
463 sha1Su1(uint8_t *output, uint8_t *input) argument
479 load2Reg( uint32_t *X, uint32_t *Y, uint8_t *output, uint8_t *input) argument
492 load3Reg( uint32_t *X, uint32_t *Y, uint32_t *Z, uint8_t *output, uint8_t *input, uint8_t *input2) argument
508 store1Reg(uint8_t *output, uint32_t *X) argument
[all...]
/gem5/src/systemc/tests/systemc/misc/parsing/T_1_1_2_4/
H A DT_1_1_2_4.cpp45 sc_signal<bool> &output; local
52 : input(INPUT), output(OUTPUT)
/gem5/src/systemc/tests/systemc/misc/parsing/T_1_1_2_5/
H A DT_1_1_2_5.cpp45 sc_signal<bool> &output; local
52 : input(INPUT), output(OUTPUT)
/gem5/src/systemc/tests/systemc/misc/parsing/T_1_1_2_6/
H A DT_1_1_2_6.cpp47 sc_signal<bool>& output; local
53 : input(INPUT), output(OUTPUT)
71 sc_signal<bool>& output )
74 I2("I2", CLK, sig, output) {
/gem5/util/systemc/gem5_within_systemc/
H A Dstats.cc50 #include "base/output.hh"
79 Stats::Output *output = Stats::initText(filename, desc); local
88 output->begin();
111 output->visit(*formula);
114 output->visit(*vector1);
117 output->visit(*vector2d);
119 output->visit(*info);
121 output->visit(*vectordist);
123 output->visit(*dist);
125 output
[all...]
/gem5/util/stats/
H A Dstats.py252 from output import StatOutput
253 output = StatOutput(options.jobfile, source)
254 output.xlabel = 'System Configuration'
255 output.colormap = 'RdYlGn'
267 output.stat = stat
268 output.ylabel = stat.name
270 output.graph(stat.name, options.graphdir)
272 output.display(stat.name, options.printmode)
290 output.graph(command, options.graphdir, proxy)
292 output
[all...]
/gem5/src/systemc/tests/systemc/misc/parsing/T_1_1_2_3/
H A DT_1_1_2_3.cpp47 sc_signal<bool> &output; local
55 : input(INPUT), output(OUTPUT)
/gem5/src/mem/slicc/
H A Dmain.py46 script can also generate the html SLICC output. See src/mem/slicc/main.py for
67 help="Path where C++ code output code goes")
69 help="Path where html output goes")
88 output = nprint if opts.quiet else eprint
90 output("SLICC v0.4")
91 output("Parsing...")
103 output("Processing AST...")
107 output("Writing HTML files...")
110 output("Writing C++ files...")
114 output("SLIC
[all...]
/gem5/util/statetrace/arch/i686/
H A Dtracechild.hh79 outputStartState(std::ostream & output) argument
81 output << "Printing i686 initial state not yet implemented"
83 return output;
/gem5/tests/test-progs/pthread/src/
H A Dtest_pthread_create_para.cpp46 // Each child thread writes its thread id to an output array
54 int* output; member in struct:__anon77
61 // write tid to this thread's output
62 (*my_args->output) = my_args->tid;
75 // create an output array for all threads
84 t_args[tid].output = outputs + tid;
H A Dtest_pthread_create_seq.cpp45 // Each child thread writes its thread id to an output array
53 int* output; member in struct:__anon78
60 // write tid to this thread's output
61 (*my_args->output) = my_args->tid;
74 // create an output array for all threads
83 t_args[tid].output = outputs + tid;
/gem5/src/systemc/tests/systemc/communication/ports/test02/
H A Dtest02.cpp68 sc_out<int> output; local
81 module_b.out(output);
/gem5/src/systemc/tests/systemc/misc/stars/star110668/
H A Dstar110668.cpp46 sc_out<sc_int<8> > output; local
58 output.write(foofoo.val2.range(8,15));
/gem5/src/dev/x86/
H A DI8259.py44 output = IntSourcePin('The pin this I8259 drives') variable in class:I8259
/gem5/src/mem/slicc/ast/
H A DOperatorExprAST.py49 # Figure out what the input and output types should be
51 output = "bool"
59 output = None
62 # boolean inputs and output
84 output = expected_type[2]
86 if output == None:
95 return self.symtab.find(output, Type)
111 # Figure out what the input and output types should be
114 output = opmap[self.op]
129 return self.symtab.find(output, Typ
[all...]
/gem5/src/cpu/
H A Dinteltrace.cc50 ostream &outs = Trace::output();

Completed in 28 milliseconds

1234