Lines Matching refs:clockSource

19 …public ComparingTimer(IClockSource clockSource, long frequency, IPeripheral owner, string localNam…  in ComparingTimer()  argument
38 this.clockSource = clockSource; in ComparingTimer()
54 …protected ComparingTimer(IClockSource clockSource, long frequency, ulong limit = ulong.MaxValue, D… in ComparingTimer() argument
55 …: this(clockSource, frequency, null, null, limit, direction, enabled, workMode, eventEnabled, comp… in ComparingTimer()
63 return clockSource.GetClockEntry(CompareReachedInternal).Enabled;
67clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(enabled: valu…
99 clockSource.GetClockEntryInLockContext(CompareReachedInternal, entry =>
112 clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry =>
134 clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry =>
181clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(step: step));
207clockSource.ExchangeClockEntryWith(CompareReachedInternal, oldEntry => oldEntry.With(frequency: ef… in RecalculateFrequency()
219 valueAccumulatedSoFar += clockSource.GetClockEntry(CompareReachedInternal).Period; in CompareReachedInternal()
225clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => entry.With(period: compareValu… in CompareReachedInternal()
230clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => entry.With(period: initialLimi… in CompareReachedInternal()
246clockSource.ExchangeClockEntryWith(CompareReachedInternal, entry => clockEntry, () => clockEntry); in InternalReset()
270 private readonly IClockSource clockSource; field in Antmicro.Renode.Peripherals.Timers.ComparingTimer