Searched refs:found (Results 1 - 25 of 41) sorted by relevance

12

/gem5/ext/pybind11/tools/
H A Dcheck-style.sh21 found="$( GREP_COLORS='mt=41' GREP_COLOR='41' grep $'\t' include tests/*.{cpp,py,h} docs/*.rst -rn --color=always )"
22 if [ -n "$found" ]; then
24 echo -e '\033[31;01mError: found tab characters in the following files:\033[0m'
26 echo "$found" | sed -e 's/^/ /'
30 found="$( grep -IUlr $'\r' include tests/*.{cpp,py,h} docs/*.rst --color=always )"
31 if [ -n "$found" ]; then
32 echo -e '\033[31;01mError: found CRLF characters in the following files:\033[0m'
34 echo "$found" | sed -e 's/^/ /'
37 found="$(GREP_COLORS='mt=41' GREP_COLOR='41' grep '[[:blank:]]\+$' include tests/*.{cpp,py,h} docs/*.rst -rn --color=always )"
38 if [ -n "$found" ]; the
[all...]
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt3.2/
H A Dmain.cpp47 sc_signal<bool> found; local
52 counter cnt("COUNTER", clk, found);
53 fsm_recognizer fsm("Recog", clk, stream, handshake, found);
58 found = false;
H A Dcounter.cpp48 do { wait(); } while (found != true);
H A Dcounter.h38 /* Header file for the counter that counts number of strings found */
49 const sc_signal<bool>& found; local
55 : found(FOUND) {
H A Dfsmr.cpp79 found.write(out);
80 wait(); // for writing the found signal
81 found.write(false); // reset the found signal
H A Dfsmr.h52 sc_signal<bool>& found; // The indicator that sequence found local
64 found(FOUND) {
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt3.1/
H A Dmain.cpp47 sc_signal<bool> found; local
52 counter cnt("COUNTER", clk, found);
53 fsm_recognizer fsm("Recog", clk, stream, handshake, found);
H A Dcounter.cpp48 do { wait(); } while (found != true);
H A Dcounter.h38 /* Header file for the counter that counts number of strings found */
49 const sc_signal<bool>& found; local
55 : found(FOUND) {
H A Dfsmr.h52 sc_signal<bool>& found; // The indicator that sequence found local
64 found(FOUND) {
67 found = 0;
H A Dfsmr.cpp79 found.write(out);
80 wait(); // for writing the found signal
81 found.write(false); // reset the found signal
/gem5/src/mem/slicc/symbols/
H A DTransition.py41 found = False
44 found = True
46 if not found:
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal_resolved.cpp92 bool found = false; local
100 found = true;
105 if( ! found ) {
H A Dsc_signal_rv.h185 bool found = false; local
193 found = true;
198 if( ! found ) {
/gem5/ext/googletest/googletest/src/
H A Dgtest-typed-test.cc78 bool found = false; local
83 found = true;
88 if (found) {
92 << " can be found in this test case.\n";
/gem5/src/mem/cache/prefetch/
H A Dsignature_path_v2.cc54 bool found = false; local
66 found = true;
71 if (!found) {
/gem5/src/mem/
H A Ddramsim2_wrapper.cc130 bool found = false; local
133 while (!found && file_stream) {
136 found = true;
144 if (!found)
H A Dpacket_queue.cc92 bool found = false; local
94 while (!found && i != transmitList.end()) {
97 found = pkt->trySatisfyFunctional(i->pkt);
103 return found;
H A Dbridge.cc376 bool found = false; local
379 while (i != transmitList.end() && !found) {
382 found = true;
387 return found;
H A Dserial_link.cc408 bool found = false; local
411 while (i != transmitList.end() && !found) {
414 found = true;
419 return found;
/gem5/ext/googletest/googletest/scripts/
H A Dpump.py174 # We found regex in lines
196 # We found a regex in line.
312 found = FindFirst(lines, TOKEN_TABLE, pos)
313 if not found:
317 if found.start == pos:
321 prev_token = MakeToken(lines, pos, found.start, 'code')
324 if found.token_type == '$var':
327 yield found
328 id_token = ParseToken(lines, found.end, ID_REGEX, 'id')
340 elif found
[all...]
/gem5/util/dist/
H A Dgem5-dist.sh89 echo "Note: if no LSF slots allocation is found all proceses are launched on the localhost."
182 [ -f "$FS_CONFIG" ] || { echo "FS config ${FS_CONFIG} not found"; exit 1; }
183 [ -f "$SW_CONFIG" ] || { echo "Switch config ${SW_CONFIG} not found"; exit 1; }
184 [ -x "$GEM5_EXE" ] || { echo "Executable ${GEM5_EXE} not found"; exit 1; }
/gem5/src/systemc/tests/systemc/utils/sc_report/action_selection/
H A Daction_selection.cpp123 bool found=false; local
127 found=true;
130 if (!found)
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_string.cpp478 bool found = false; local
479 while( ind < len && ! found )
481 found = ( sub_string == substr( ind, ind + sub_len - 1 ) );
484 if( found ) {
520 bool found = false; local
521 while(!found && i<len)
522 found = rep->str[i++]==c;
523 return found;
/gem5/ext/pybind11/tests/
H A Dtest_factory_constructors.py291 found = re.search(r'^operator new called, returning (\d+)\n$', str(capture))
292 assert found
297 assert capture == "operator delete called on " + found.group(1)
302 found = re.search(r'^operator new called, returning (\d+)\n$', str(capture))
303 assert found
308 assert capture == "operator delete called on " + found.group(1)

Completed in 28 milliseconds

12