Home
last modified time | relevance | path

Searched refs:performanceInMips (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()
128 … var residuumModulus = performanceInMips / Misc.GCD(performanceInMips, TicksPerMicrosecond); in FromCPUCycles()
132 ulong ticks = cycles * TicksPerMicrosecond / performanceInMips; in FromCPUCycles()
230 public ulong ToCPUCycles(uint performanceInMips, out ulong ticksCountResiduum) in ToCPUCycles()
232 …var maxTicks = FromCPUCycles(ulong.MaxValue / TicksPerMicrosecond, performanceInMips, out var unus… in ToCPUCycles()
243 return nanoSeconds * performanceInMips / TicksPerMicrosecond; in ToCPUCycles()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DBaseCPU.cs184 get => performanceInMips.Value;
185 set => performanceInMips.Value = value;
593 using(performanceInMips.Seal()) in CpuThreadBodyInner()
949 private readonly SealableValue<uint> performanceInMips = new SealableValue<uint>(); field in Antmicro.Renode.Peripherals.CPU.BaseCPU