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

1234

/gem5/src/dev/pci/
H A DPciDevice.py54 pci_bus = Param.Int("PCI bus")
55 pci_dev = Param.Int("PCI device number")
56 pci_func = Param.Int("PCI function code")
/gem5/src/arch/arm/
H A DArmPMU.py174 cycleEventId = Param.Int(ARCH_EVENT_CORE_CYCLES, "Cycle event id")
176 eventCounters = Param.Int(31, "Number of supported PMU counters")
H A DArmTLB.py68 size = Param.Int(64, "TLB size")
H A Dsemihosting.cc517 return retOK(curTick() / (SimClock::Int::s / 100));
/gem5/src/mem/cache/tags/
H A Dbase.cc159 if (age / SimClock::Int::us < 10) { // <10us
161 } else if (age / SimClock::Int::us < 100) { // <100us
163 } else if (age / SimClock::Int::ms < 1) { // <1ms
165 } else if (age / SimClock::Int::ms < 10) { // <10ms
/gem5/src/dev/net/
H A DEthernet.py109 bufsz = Param.Int(10000, "tap buffer size")
130 maxlen = Param.Int(96, "max portion of packet data to dump")
146 rx_desc_cache_size = Param.Int(64,
148 tx_desc_cache_size = Param.Int(64,
H A Di8254xGBe.hh166 Tick intClock() { return SimClock::Int::ns * 1024; }
H A Di8254xGBe.cc705 Tick itr_interval = SimClock::Int::ns * 256 * regs.itr.interval();
813 Tick t = curTick() + SimClock::Int::ns * 256 * regs.itr.interval();
/gem5/src/dev/arm/
H A Drtc_pl031.cc72 data = timeVal + ((curTick() - lastWrittenTick) / SimClock::Int::s);
172 Tick ticks_until = SimClock::Int::s * seconds_until;
H A Denergy_ctrl.cc104 result = dvfsHandler->transLatency() / SimClock::Int::ns;
/gem5/src/dev/
H A Dmc146818.hh76 parent(_parent), offset(SimClock::Int::s)
H A Dmc146818.cc184 schedule(tickEvent, curTick() + SimClock::Int::s / 2);
342 parent->schedule(this, curTick() + SimClock::Int::s);
/gem5/src/mem/cache/
H A DCache.py72 block_size = Param.Int(Parent.cache_line_size, "block size in bytes")
/gem5/src/mem/
H A Ddramsim2.cc151 schedule(tickEvent, curTick() + wrapper.clockPeriod() * SimClock::Int::ns);
290 wrapper.clockPeriod() * SimClock::Int::ns));
318 wrapper.clockPeriod() * SimClock::Int::ns));
H A Ddrampower.cc98 timingSpec.clkPeriod = (p->tCK / (double)(SimClock::Int::ns));
H A Dxbar.cc114 panic_if(pkt->headerDelay > SimClock::Int::us,
/gem5/src/sim/power/
H A Dthermal_model.cc241 schedule(stepEvent, curTick() + SimClock::Int::s * _step);
278 schedule(stepEvent, curTick() + SimClock::Int::s * _step);
/gem5/src/dev/serial/
H A Duart8250.cc79 static const Tick interval = 225 * SimClock::Int::ns;
208 if (curTick() - lastTxInt > 225 * SimClock::Int::ns) {
/gem5/ext/googletest/googletest/test/
H A Dgtest-typed-test_test.cc310 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP1, int);
311 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2476 typedef int Int; typedef in class:testing::internal::TypeWithSize
2485 typedef __int64 Int; typedef in class:testing::internal::TypeWithSize
2488 typedef long long Int; // NOLINT
2494 typedef TypeWithSize<4>::Int Int32;
2496 typedef TypeWithSize<8>::Int Int64;
2498 typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds.
/gem5/util/tlm/src/
H A Dsc_master_port.cc282 sc_core::sc_time((double)(ticks / SimClock::Int::ps), sc_core::SC_PS);
/gem5/src/cpu/
H A DBaseCPU.py153 cpu_id = Param.Int(-1, "CPU identifier")
/gem5/src/systemc/tlm_bridge/
H A Dtlm_to_gem5.cc293 sc_core::sc_time((double)(ticks / SimClock::Int::ps), sc_core::SC_PS);
/gem5/ext/googletest/googlemock/test/
H A Dgmock-actions_test.cc1203 TEST(AssignTest, Int) {
1232 TEST_F(SetErrnoAndReturnTest, Int) {
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h117 template <typename Concrete, typename... Check, typename... Int>
118 constexpr int platform_lookup(Int... codes) {

Completed in 66 milliseconds

1234