Searched refs:Time (Results 1 - 13 of 13) sorted by relevance
/gem5/src/sim/ |
H A D | root.hh | 35 * Time syncing prevents simulated time from passing faster than real time. It 56 Time _period; 58 Time _spinThreshold; 60 Time lastTime; 86 const Time timeSyncPeriod() const { return _period; } 88 const Time timeSyncSpinThreshold() const { return _spinThreshold; } 93 void timeSyncPeriod(Time newPeriod); 95 void timeSyncSpinThreshold(Time newThreshold);
|
H A D | root.cc | 53 Time cur_time, diff, period = timeSyncPeriod(); 58 Time remainder = period - diff; 90 Root::timeSyncPeriod(Time newPeriod) 100 Root::timeSyncSpinThreshold(Time newThreshold)
|
H A D | stat_control.cc | 71 Time statTime(true); 88 Time now; 91 Time elapsed = now - statTime;
|
/gem5/src/base/ |
H A D | time.hh | 48 class Time class 64 explicit Time() { clear(); } function in class:Time 65 explicit Time(double sec) { operator=(sec); } function in class:Time 66 Time(const Time &val) : _time(val._time) { } function in class:Time 67 Time(uint64_t sec, uint64_t nsec) { set(sec, nsec); } function in class:Time 68 Time(const timeval &tv) { operator=(tv); } function in class:Time 69 Time(const timespec &ts) { operator=(ts); } function in class:Time 113 * @return Time value measured in Ticks. 117 const Time [all...] |
H A D | time.cc | 46 Time::_set(bool monotonic) 58 Time::setTick(Tick ticks) 67 Time::getTick() const 74 Time::date(const string &format) const 95 Time::time() const 125 Time::serialize(const std::string &base, CheckpointOut &cp) const 132 Time::unserialize(const std::string &base, CheckpointIn &cp) 143 sleep(const Time &time)
|
/gem5/src/dev/x86/ |
H A D | Cmos.py | 38 time = Param.Time('01/01/2012',
|
/gem5/src/arch/arm/ |
H A D | ArmSemihosting.py | 61 time = Param.Time('01/01/2009',
|
H A D | semihosting.hh | 334 SEMI_CALL(Time);
|
/gem5/src/dev/mips/ |
H A D | Malta.py | 45 time = Param.Time('01/01/2009',
|
/gem5/src/dev/alpha/ |
H A D | Tsunami.py | 46 time = Param.Time('01/01/2009',
|
/gem5/src/dev/sparc/ |
H A D | T1000.py | 47 time = Param.Time('01/01/2009', "System time to use ('Now' for real time)")
|
/gem5/src/dev/arm/ |
H A D | RealView.py | 95 "Time between action and interrupt generation by device") 102 pio_latency = Param.Latency("10ns", "Time between action and write/read result by AMBA DMA Device") 359 int_delay = Param.Latency("100ns", "Time between action and interrupt generation by UART") 435 time = Param.Time('01/01/2009', "System time to use ('Now' for actual time)")
|
/gem5/src/python/m5/ |
H A D | params.py | 1244 class Time(ParamValue): class in inherits:ParamValue 2189 'Time',
|
Completed in 26 milliseconds