Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Time/
DTimeInterval.cs47 ulong ticks = 0; in TryParse()
48 ticks += decimals; in TryParse()
49 ticks += seconds * TicksPerSecond; in TryParse()
50 ticks += minutes * (60 * TicksPerSecond); in TryParse()
51 ticks += hours * (3600 * TicksPerSecond); in TryParse()
53 output = new TimeInterval(ticks); in TryParse()
59 return (t1.ticks <= t2.ticks) ? t1 : t2; in Min()
107 public static TimeInterval FromTicks(ulong ticks) in FromTicks()
109 return new TimeInterval(ticks); in FromTicks()
132 ulong ticks = cycles * TicksPerMicrosecond / performanceInMips; in FromCPUCycles()
[all …]