Searched refs:min (Results 51 - 75 of 84) sorted by relevance

1234

/gem5/src/mem/ruby/network/
H A DTopology.cc235 minimum = min(minimum,
/gem5/src/cpu/testers/traffic_gen/
H A Dbase.cc272 const Tick nextEventTick = std::min(nextPacketTick, nextTransitionTick);
/gem5/src/arch/sparc/
H A Dfaults.cc346 tc->setMiscReg(MISCREG_GL, min<int>(GL+1, MaxGL));
430 tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxPGL));
432 tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxGL));
/gem5/src/base/stats/
H A Dtext.cc437 print.value = data.min;
499 Counter low = i * data.bucket_size + data.min;
500 Counter high = ::min(low + data.bucket_size - 1.0, data.max);
/gem5/ext/dsent/model/std_cells/
H A DLATQ.cc40 using std::min;
H A DDFFQ.cc40 using std::min;
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtestall.py123 belen = min(random.choice(lengths), length)
/gem5/src/mem/
H A Dpacket.cc268 const Addr overlap_size = std::min(val_end, func_end)+1 -
H A Ddram_ctrl.cc430 unsigned size = std::min((addr | (burstSize - 1)) + 1,
528 unsigned size = std::min((addr | (burstSize - 1)) + 1,
1543 switched_cmd_type ? std::min(tRTW, tCS) : 0);
/gem5/src/base/
H A Dstatistics.cc242 size_type last = min(v1.size(), v2.size()) - 1;
/gem5/ext/pybind11/tools/
H A Dmkdoc.py99 leading_spaces = min(leading_spaces, len(s) - len(s.lstrip()))
/gem5/ext/drampower/src/
H A DCmdScheduler.cc248 pdScheduling(endTime, min(timer, tREF), memSpec);
266 pdScheduling(endTime, min(timer, tREF), memSpec);
/gem5/src/cpu/pred/
H A Dmultiperspective_perceptron.cc266 for (int i = 0; i < (std::min(nbest, (int) best_preds.size())); i += 1) {
350 j < std::min(nbest, (int) best_preds.size());
/gem5/src/dev/net/
H A Di8254xGBe.cc970 max_to_fetch = std::min(max_to_fetch, free_cache);
1299 std::min(packet->length - pkt_offset, buf_len);
1311 std::min(packet->length - split_point, buf_len);
1696 tsoCopyBytes = std::min((tsoMss + tsoHeaderLen) - p->length,
1699 tsoCopyBytes = std::min(tsoMss,
H A Dns_gige.cc57 using std::min;
1196 // don't need min<>(rxPktBytes,rxDescCnt) if above sanity
1709 txXferLen = min<uint32_t>(txDescCnt, txFifo.avail());
/gem5/src/python/m5/
H A Dparams.py577 if not (hasattr(cls, 'min') and hasattr(cls, 'max')):
580 " 'min' and 'max' or 'size' and 'unsigned'\n",
583 cls.min = 0
586 cls.min = -(2 ** (cls.size - 1))
591 # bounds. Initialization of the min and max bounds is done in the
598 if not self.min <= self.value <= self.max:
600 (self.min, self.value, self.max))
644 class Percent(CheckedInt): cxx_type = 'int'; min = 0; max = 100
/gem5/src/arch/arm/
H A Disa.cc2145 len = std::min(
2154 len = std::min(
2160 len = std::min(len, sveVL - 1);
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.h654 if( SC_LIKELY_( u > (std::numeric_limits<Type>::min)() ) )
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbutils.hh475 if (SC_LIKELY_(u > (std::numeric_limits<Type>::min)()))
/gem5/src/cpu/simple/
H A Datomic.cc346 frag_size = std::min(
/gem5/src/gpu-compute/
H A Dwavefront.cc986 actualWgSz[d] = std::min(workGroupSz[d],
/gem5/configs/common/
H A DSimulation.py653 maxtick = min([maxtick_from_abs, maxtick_from_rel, maxtick_from_maxtime])
/gem5/src/cpu/trace/
H A Dtrace_cpu.cc130 traceOffset = std::min(first_icache_tick, first_dcache_tick);
131 inform("%s: Time offset (tick) found as min of both traces is %lli.\n",
/gem5/src/mem/cache/
H A Dbase.cc1703 Tick nextReady = std::min(mshrQueue.nextReadyTime(),
1709 nextReady = std::min(nextReady,
/gem5/src/cpu/o3/
H A Dcommit_impl.hh1345 int insts_to_process = std::min((int)renameWidth, fromRename->size);

Completed in 93 milliseconds

1234