Searched refs:total (Results 51 - 75 of 78) sorted by relevance

1234

/gem5/src/mem/cache/prefetch/
H A Dqueued.cc113 QueuedPrefetcher::getMaxPermittedPrefetches(size_t total) const
131 size_t max_pfs = total;
132 if (total > 0 && issuedPrefetches > 0) {
133 size_t throttle_pfs = (total * throttleControlPct) / 100;
134 size_t min_pfs = (total - throttle_pfs) == 0 ?
135 1 : (total - throttle_pfs);
136 max_pfs = min_pfs + (total - min_pfs) *
H A Dqueued.hh240 * @param total number of prefetch candidates generated by the prefetcher
243 size_t getMaxPermittedPrefetches(size_t total) const;
/gem5/src/mem/cache/
H A Dbase.cc1892 .flags(total | nozero | nonan)
1913 .flags(total | nozero | nonan)
1923 .flags(total | nozero | nonan)
1939 .flags(total | nozero | nonan)
1949 .flags(total | nozero | nonan)
1959 .flags(total | nozero | nonan)
1975 .flags(total | nozero | nonan)
1985 .flags(total | nozero | nonan)
1995 .flags(total | nozero | nonan)
2010 .flags(total | nozer
[all...]
/gem5/src/cpu/o3/
H A Dlsq_impl.hh383 unsigned total = 0; local
391 total += getCount(tid);
394 return total;
401 unsigned total = 0; local
409 total += numLoads(tid);
412 return total;
419 unsigned total = 0; local
427 total += thread[tid].numStores();
430 return total;
437 unsigned total local
455 unsigned total = 0; local
[all...]
H A Dcommit_impl.hh180 .flags(total)
187 .flags(total)
194 .flags(total)
201 .flags(total)
208 .flags(total)
215 .flags(total)
222 .flags(total)
229 .flags(total)
236 .flags(total)
243 .flags(total)
[all...]
H A Diew_impl.hh223 .flags(total);
233 .flags(total);
239 .flags(total);
245 .flags(total);
251 .flags(total);
256 .flags(total);
262 .flags(total);
270 .flags(total);
276 .flags(total);
282 .flags(total);
[all...]
H A Drob_impl.hh189 int total = 0; local
192 total += countInsts(tid);
194 return total;
H A Dcpu.cc429 .flags(Stats::total);
435 .flags(Stats::total);
674 Counter total(0);
678 total += thread[i]->numInst;
680 return total;
687 Counter total(0);
691 total += thread[i]->numOp;
693 return total;
H A Drename_impl.hh119 .flags(Stats::total);
175 .flags(Stats::total)
180 .flags(Stats::total)
185 .flags(Stats::total)
/gem5/src/cpu/minor/
H A Dfetch2.cc617 .flags(total);
622 .flags(total);
627 .flags(total);
632 .flags(total);
637 .flags(total);
642 .flags(total);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash8/
H A Dmain.cpp23 car. This controller contains a speedometer, two odometers (total
125 odometers.total(disp_total_dist);
/gem5/src/systemc/tests/systemc/misc/v1.0/dash9/
H A Dmain.cpp23 car. This controller contains a speedometer, two odometers (total
130 odometers.total(disp_total_dist);
/gem5/src/sim/power/
H A Dmathexpr_powermodel.cc149 return fi->total();
/gem5/configs/example/
H A Dmemtest.py118 # Get the total number of testers
126 total = 0
128 total += t * m
130 return total
/gem5/src/mem/ruby/network/garnet2.0/
H A DGarnetNetwork.cc263 .flags(Stats::pdf | Stats::total | Stats::nozero | Stats::oneline)
269 .flags(Stats::pdf | Stats::total | Stats::nozero | Stats::oneline)
322 .flags(Stats::pdf | Stats::total | Stats::nozero | Stats::oneline)
328 .flags(Stats::pdf | Stats::total | Stats::nozero | Stats::oneline)
394 .flags(Stats::pdf | Stats::total | Stats::nozero | Stats::oneline)
/gem5/src/unittest/
H A Dstattest.cc185 .flags(pdf | total)
239 .flags(total)
370 .flags(total | nozero | nonan)
376 .flags(total | nozero | nonan)
381 .desc("The total stat should equal 1")
382 .flags(total |nozero |nonan)
/gem5/ext/pybind11/tests/
H A Dconstructor_stats.h129 int total = 0; local
132 total += p.second;
133 return total;
/gem5/src/sim/
H A Dclocked_object.cc142 (pwrStateResidencyTicks.total() + elapsed_time);
/gem5/src/mem/
H A Dxbar.cc545 .flags(total | nozero | nonan);
551 .flags(total | nozero | nonan);
553 // both the packet count and total size are two-dimensional
/gem5/src/base/
H A Dstatistics.cc476 Formula::total() const function in class:Stats::Formula
478 return root ? root->total() : 0.0;
/gem5/src/mem/cache/tags/
H A Dbase.cc251 .flags(nozero | total)
/gem5/util/stats/
H A Ddb.py89 if int(row[9]): self.flags |= flags.total
157 from info import ProxyError, scalar, vector, value, values, total, len
378 # Desc: given a run, a stat and an array of samples, total the samples
H A Dinfo.py65 def total(stat, run): function
634 if (self.flags & flags.total) or 1:
655 name = '%s.total' % (self.name)
719 if self.flags & flags.total:
727 d.name = self.name + '.total'
/gem5/src/dev/pci/
H A Dcopy_engine.cc441 .flags(total)
447 .flags(total)
/gem5/src/cpu/simple/
H A Dbase.cc362 .desc("ICache total stall cycles")
368 .desc("DCache total stall cycles")
376 .flags(total | pdf | dist)

Completed in 57 milliseconds

1234