Home
last modified time | relevance | path

Searched refs:FromCPUCycles (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DTimeInterval.cs124 …public static TimeInterval FromCPUCycles(ulong cycles, uint performanceInMips, out ulong cyclesRes… in FromCPUCycles() method
232 …var maxTicks = FromCPUCycles(ulong.MaxValue / TicksPerMicrosecond, performanceInMips, out var unus… in ToCPUCycles()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs145 … var newInterval = TimeInterval.FromCPUCycles(instructions, PerformanceInMips, out var _); in SkipTime()
414 …var intervalToReport = TimeInterval.FromCPUCycles(instructions + executedResiduum, PerformanceInMi… in ReportProgress()
661 …var intervalToSleep = TimeInterval.FromCPUCycles(instructionsToSkip, PerformanceInMips, out var cy… in CpuThreadBodyInner()
727 …var timeLeft = TimeInterval.FromCPUCycles(instructionsLeft + executedResiduum, PerformanceInMips, … in CpuThreadBodyInner()