Searched refs:total (Results 26 - 50 of 78) sorted by relevance

1234

/gem5/src/systemc/tests/systemc/misc/v1.0/dash5/
H A Ddriver.cpp113 if (total.event()) {
114 cout << "Current total distance displayed = "
115 << total << " km @ " << sc_time_stamp() << endl;
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
155 lcd_mod->total.bind(total);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash6/
H A Ddriver.cpp113 if (total.event()) {
114 cout << "Current total distance displayed = "
115 << total << " km @ " << sc_time_stamp() << endl;
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
155 lcd_mod->total.bind(total);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash7/
H A Ddriver.cpp113 if (total.event()) {
114 cout << "Current total distance displayed = "
115 << total << " km @ " << sc_time_stamp() << endl;
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
163 // lcd_mod->total.bind(total);
168 lcd_mod->total(total);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash8/
H A Ddriver.cpp113 if (total.event()) {
114 cout << "Current total distance displayed = "
115 << total << " km @ " << sc_time_stamp() << endl;
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
166 // lcd_mod->total.bind(total);
172 lcd_mod->total(total);
175 // *lcd_mod << start, total_dist, partial_dist, total, partial;
/gem5/src/systemc/tests/systemc/misc/v1.0/dash9/
H A Ddriver.cpp113 if (total.event()) {
114 cout << "Current total distance displayed = "
115 << total << " km @ " << sc_time_stamp() << endl;
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
166 // lcd_mod->total.bind(total);
172 lcd_mod->total(total);
175 // *lcd_mod << start, total_dist, partial_dist, total, partial;
/gem5/src/systemc/tests/systemc/misc/v1.0/dash3/
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
155 lcd_mod->total.bind(total);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash4/
H A Ddist.h76 // Compute total and partial distances.
102 sc_out<double> total; // Total distance. local
123 sc_out<double> total; // Total distance. local
155 lcd_mod->total.bind(total);
/gem5/util/
H A Doprofile-top.py66 total = 0 variable
76 #total += int(count)
79 total += int(count)
90 # print "%s -- %5.1f%% " % (prof[i][1], 100 * float(prof[i][0])/float(total))
94 print "%s -- %5.1f%% " % (d, 100 * float(prof[d])/float(total))
/gem5/util/stats/
H A Dprofile.py50 if attr == 'total':
51 total = 0.0
53 total += value
54 return total
71 total = float(self.total)
84 print >>output, symbolf % (name, 100.0 * (float(number) / total))
135 def total(self): member in class:FuncNode
136 total = self.count
138 total
[all...]
/gem5/src/systemc/tests/systemc/misc/v1.0/dash2/
H A Ddist.h49 sc_out<double> total; // Total distance. local
63 // Compute total and partial distances.
/gem5/src/base/stats/
H A Dinfo.hh50 /** Print the total. */
51 const FlagsType total = 0x0010; member in namespace:Stats
52 /** Print the percent of the total that this entry represents. */
54 /** Print the cumulative percentage of total upto this entry. */
155 virtual Result total() const = 0;
172 virtual Result total() const = 0;
236 virtual Result total() const = 0;
H A Dtext.cc238 void update(Result val, Result total);
243 ScalarPrint::update(Result val, Result total) argument
246 if (total) {
247 pdf = val / total;
293 Result total; member in struct:Stats::VectorPrint
335 if ((!flags.isSet(nozero)) || (total != 0)) {
361 if (flags.isSet(::Stats::total)) {
364 print.name = base + "total";
366 print.value = total;
472 Result total local
640 Result total = 0.0; local
[all...]
/gem5/src/cpu/minor/
H A Dstats.cc90 .flags(Stats::total | Stats::pdf | Stats::dist);
/gem5/src/dev/net/
H A Dpktfifo.hh196 unsigned total = 0; local
198 total += i->packet->length + i->slack;
200 if (total != _size)
201 panic("total (%d) is not == to size (%d)\n", total, _size);
/gem5/src/arch/alpha/
H A Dkernel_stats.cc69 .flags(total | pdf | nozero | nonan)
103 .flags(total)
129 .flags(total | pdf | nozero | nonan)
136 .flags(total | pdf | nozero | nonan)
143 .flags(total | pdf | nozero | nonan)
149 .flags(total | nozero | nonan)
/gem5/src/cpu/
H A Dbase.hh610 Counter total = 0; local
614 total += cpuList[i]->totalInsts();
616 return total;
621 Counter total = 0; local
625 total += cpuList[i]->totalOps();
627 return total;
/gem5/src/mem/
H A Dabstract_mem.cc104 .flags(total | nozero | nonan)
113 .flags(total | nozero | nonan)
122 .flags(total | nozero | nonan)
131 .flags(total | nozero | nonan)
140 .flags(total | nozero | nonan)
149 .flags(total | nozero | nonan)
159 .flags(total | nozero | nonan)
170 .flags(total | nozero | nonan)
180 .flags(total | nozero | nonan)
190 .flags(total | nozer
[all...]
/gem5/src/base/
H A Dstatistics.hh124 Result total() const { return this->s.total(); } function in class:Stats::ScalarInfoProxy
153 Result total() const { return this->s.total(); } function in class:Stats::VectorInfoProxy
178 Result total() const { return this->s.total(); } function in class:Stats::Vector2dInfoProxy
554 * a current count and updates a total (count * ticks) when this count
566 /** The total count for all tick. */
567 mutable Result total;
579 : current(0), lastReset(0), total(
[all...]
/gem5/util/cxx_config/
H A Dstats.cc93 << vector->total() << '\n';
/gem5/src/cpu/o3/
H A Dinst_queue_impl.hh102 // Set the number of total physical registers
249 .flags(total | pdf | cdf )
276 .flags(total | pdf | dist)
300 .flags(total)
318 .flags(total)
324 .flags(total)
336 .flags(total);
341 .flags(total);
346 .flags(total);
351 .flags(total);
[all...]

Completed in 30 milliseconds

1234