Searched refs:min (Results 26 - 50 of 84) sorted by relevance

1234

/gem5/src/base/stats/
H A Dinfo.hh180 Counter min; member in struct:Stats::DistData
/gem5/ext/mcpat/
H A Dbus_interconnect.cc159 min(bus_params.input_ports, bus_params.output_ports);
H A Dnoc.cc248 min(noc_params.input_ports, noc_params.output_ports);
/gem5/util/stats/
H A Ddisplay.py126 for i in xrange(min(len(value), len(self.subdescs))):
H A Dprint.py123 for i in xrange(min(len(value), len(self.subdescs))):
H A Ddb.py35 last = min(len(v1), len(v2)) - 1
94 self.min = float(row[12])
/gem5/tests/test-progs/insttest/src/riscv/
H A Drv64c.cpp118 expect<int64_t>(numeric_limits<int32_t>::min(),
/gem5/configs/dram/
H A Dsweep.py160 # use min of the page size and 512 bytes as that should be more than
162 max_stride = min(512, page_size)
H A Dlow_power_sweep.py154 # to/from low power states as possible to. We provide a min and max itt to the
180 # For max stride, use min of the page size and 512 bytes as that should be
182 max_stride = min(512, page_size)
248 print("\tburst: %d, banks: %d, max stride: %d, itt min: %s ns" % \
/gem5/src/base/
H A Dstatistics.hh1402 Counter min;
1407 /** The number of buckets. Equal to (max-min)/bucket_size. */
1410 Params() : DistParams(Dist), min(0), max(0), bucket_size(0),
1426 /** The number of values sampled less than min. */
1499 data.min = params->min;
1504 data.max_val = (max_val == CounterLimits::min()) ? 0 : max_val;
1524 min_track = params->min;
1529 max_val = CounterLimits::min();
1649 data.min
[all...]
/gem5/ext/dsent/model/optical/
H A DRingModulator.cc43 using std::min;
226 double Q_f = std::min(f0 / BW, Q_max); // Quality factor
/gem5/ext/mcpat/cacti/
H A DUcache.cc603 void filter_tag_arr(const min_values_t * min, list<mem_array *> & list) { argument
620 bool v = check_mem_org(*list.back(), min);
622 cur_cost = wt_delay * (list.back()->access_time / min->min_delay) +
624 min->min_dyn) +
626 min->min_leakage) +
627 wt_area * (list.back()->area / min->min_area) +
628 wt_cyc * (list.back()->cycle_time / min->min_cyc);
834 //update min values for the entire cache
854 //update min values for the entire cache
/gem5/util/minorview/
H A Dview.py297 self.set_time_index(min(self.view.timeIndex + 1,
339 self.set_time_index(min(len(self.model.times) - 1,
518 daScale = min(proportion.x, proportion.y)
/gem5/src/dev/
H A Ddma_device.cc407 const size_t xfer_size = std::min(fifo_space, block_remaining);
429 const size_t req_size(std::min(maxReqSize, endAddr - nextAddr));
H A Dpixelpump.cc220 const unsigned x_end(std::min(_posX + pixelChunk, _timings.width));
/gem5/src/dev/virtio/
H A Dbase.cc174 const size_t chunk_size(std::min(desc->size() - offset, size));
197 const size_t chunk_size(std::min(desc->size() - offset, size));
/gem5/tests/
H A Ddiff-out141 } elsif (/(.*)\.(min|max)_value/) {
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dtokenize.py235 i = min([x for x in (i1, i2, i3, i4, end) if x != -1])
/gem5/src/gpu-compute/
H A Dlds_state.cc122 int numBanks = std::min(parent->wfSize(), banks);
/gem5/src/cpu/checker/
H A Dcpu.cc149 frag_size = std::min(
/gem5/src/mem/cache/prefetch/
H A Daccess_map_pattern_matching.cc94 degree = std::min((unsigned) memory_bandwidth, usefulDegree);
/gem5/src/cpu/pred/
H A Dtage_base.cc444 uint8_t min = 1; local
446 if (gtable[i][bi->tableIndices[i]].u < min) {
447 min = gtable[i][bi->tableIndices[i]].u;
463 if (min > 0) {
/gem5/src/dev/serial/
H A Dterminal.cc221 const size_t chunk_len(std::min(txbuf.size() - i, sizeof(buf)));
/gem5/src/cpu/o3/probe/
H A Delastic_trace.cc715 new_record->compDelay = std::min(comp_delay, new_record->compDelay);
756 new_record->compDelay = std::min(comp_delay, new_record->compDelay);
/gem5/src/base/loader/
H A Delf_object.cc278 ldMax(std::numeric_limits<Addr>::min())
348 ldMin = std::min(ldMin, phdr.p_vaddr);

Completed in 47 milliseconds

1234