Searched refs:line (Results 1 - 25 of 136) sorted by relevance

123456

/gem5/src/systemc/tests/systemc/misc/sim_tests/biquad/biquad3/
H A Ddelay_line.cpp45 out.write(line[delay-1]);
47 line[i] = line[i-1];
48 line[0] = in.read();
H A Ddelay_line.h51 float *line; // delay line local
62 line = new float[delay];
63 for(int i=0; i<delay; i++) line[i] = 0.0;
/gem5/ext/dsent/libutil/
H A DConfig.cc47 // Read an entire line at a time
48 String line; local
51 line = nextline; // we read ahead; use it now
56 //std::getline(ist_, line);
57 safeGetline(ist_, line);
61 line = line.substr(0, line.find(comment));
62 line.trim();
65 if((sentry != "") && (line
[all...]
/gem5/src/systemc/tests/systemc/misc/sim_tests/biquad/biquad2/
H A Ddelay_line.cpp46 line[i] = 0;
49 out.write(line[delay-1]);
51 line[i] = line[i-1];
52 line[0] = in.read();
H A Ddelay_line.h53 float *line; // delay line local
65 line = new float[delay];
/gem5/src/dev/
H A Dplatform.cc50 Platform::postPciInt(int line) argument
56 Platform::clearPciInt(int line) argument
H A Dplatform.hh77 virtual void postPciInt(int line);
82 virtual void clearPciInt(int line);
/gem5/src/dev/arm/
H A Drealview.cc81 RealView::postPciInt(int line) argument
83 gic->sendInt(line);
87 RealView::clearPciInt(int line) argument
89 gic->clearInt(line);
H A Drealview.hh89 void postPciInt(int line) override;
90 void clearPciInt(int line) override;
/gem5/src/dev/x86/
H A Dpc.hh68 void postPciInt(int line) override;
69 void clearPciInt(int line) override;
H A Di8259.cc127 int line = findMsbSet(ISR); local
128 DPRINTF(I8259, "Subcommand: Nonspecific EOI on line %d.\n",
129 line);
130 handleEOI(line);
138 int line = bits(val, 2, 0); local
139 DPRINTF(I8259, "Subcommand: Specific EIO on line %d.\n",
140 line);
141 handleEOI(line);
243 X86ISA::I8259::handleEOI(int line) argument
245 ISR &= ~(1 << line);
253 requestInterrupt(int line) argument
271 signalInterrupt(int line) argument
316 int line = findMsbSet(IRR); local
[all...]
/gem5/util/
H A Dfind_copyrights.py18 for i,line in enumerate(lines):
19 if i == 0 and (line.startswith('#!') or mode_line.search(line)):
22 if shell_comment.search(line):
26 if line.strip():
33 for i,line in enumerate(lines):
34 if i == 0 and mode_line.search(line):
37 if lisp_comment.search(line):
41 if line.strip():
50 for i,line i
[all...]
H A Ddiff_config.pl203 while ( my $line = <CONFIG> ) {
204 if ( $line =~ /^\[.*\]$/ ) {
205 readSection( $line, \%config );
217 my $line = shift;
219 $line =~ m/\[(.*)\]/;
221 while ( my $line = <CONFIG> ) {
222 if ( $line =~ /^$/ ) {
225 my @field = split( /=/, $line );
H A Doprofile-top.py69 for line in f.readlines():
70 line = re.sub("\(no symbols\)", "nosym", line) variable
71 line = re.sub("anonymous.*", "nosym", line) variable
75 (count, percent, app, sym) = line.split()
/gem5/src/base/
H A Dtrace.cc114 std::ostringstream line; local
116 ccprintf(line, "%08x ", i);
121 ccprintf(line, "%02x ", data[i + j] & 0xff);
123 ccprintf(line, " ");
127 ccprintf(line, " ");
128 ccprintf(line, " ");
132 ccprintf(line, "%c", (char)(isprint(ch) ? ch : ' '));
135 ccprintf(line, "\n");
136 logMessage(when, name, line.str());
/gem5/util/style/
H A Dverifiers.py113 they operate on a line-by-line basis.
119 opt_name = short name used to generate command-line options to
209 Line-by-line checks can simply provide a check_line() method
210 that returns True if the line is OK and False if it has an
211 error. Verifiers that need a multi-line view (like
223 Line-by-line fixes can simply provide a fix_line() method that
224 returns the fixed line. Verifiers that need a multi-line view
240 for num,line i
[all...]
H A Dsort_includes.py71 def include_key(line):
75 match = include_re.match(line)
76 assert match, line
100 def matcher(context, line):
101 m = rex.match(line)
109 actual include line."""
114 def matcher(context, line):
115 (keyword, fname, extra) = base_matcher(context, line)
135 def matcher(context, line):
140 (keyword, fname, extra) = base_matcher(context, line)
[all...]
/gem5/ext/ply/example/BASIC/
H A Dbasic.py34 # Specifying a line number with no code deletes that line from
39 line = raw_input("[BASIC] ") variable
42 if not line: continue
43 line += "\n"
44 prog = basparse.parse(line)
/gem5/src/dev/alpha/
H A Dtsunami.cc80 Tsunami::postPciInt(int line) argument
82 cchip->postDRIR(line);
86 Tsunami::clearPciInt(int line) argument
88 cchip->clearDRIR(line);
H A Dtsunami.hh96 void postPciInt(int line) override;
97 void clearPciInt(int line) override;
/gem5/ext/googletest/googletest/scripts/
H A Dcommon.py38 # Matches the line from 'svn info .' output that describes what SVN
50 lines = [line.strip() for line in f.readlines()]
58 for line in GetCommandOutput('svn info .'):
59 m = _SVN_INFO_URL_RE.match(line)
H A Dpump.py88 """Represents a position (line and column) in a text file."""
90 def __init__(self, line=-1, column=-1):
91 self.line = line
95 return self.line == rhs.line and self.column == rhs.column
101 return self.line < rhs.line or (
102 self.line == rhs.line an
[all...]
/gem5/src/dev/sparc/
H A Dt1000.hh75 virtual void postPciInt(int line);
80 virtual void clearPciInt(int line);
/gem5/ext/drampower/src/
H A DTraceParser.cc51 Data::MemCommand TraceParser::parseLine(std::string line) argument
54 istringstream linestream(line);
90 std::string line; local
91 while (getline(pwr_trace, line)) {
92 MemCommand cmdline = parseLine(line);
106 std::string line; local
107 while (getline(trace, line)) {
108 MemCommand cmdline = parseLine(line);
/gem5/util/systemc/gem5_within_systemc/
H A Dsc_logger.cc61 /** Accumulate line so far */
62 std::ostringstream line; member in class:Gem5SystemC::CuttingStreambuf
70 /** Accumulate to line up to \n and then emit */
74 /** Push a line out to the logger */
82 logger->logMessage((Tick)-1, "gem5", line.str());
83 line.clear();
84 line.str("");
93 * by one here and added to this->line. */
100 line << (char) chr;
109 if (!line
[all...]

Completed in 13 milliseconds

123456