Lines Matching defs:ClockEntry
15 public struct ClockEntry struct
17 …ClockEntry(ulong period, long frequency, Action handler, IEmulationElement owner, string localName… in ClockEntry() argument
33 …try With(ulong? period = null, long? frequency = null, Action handler = null, bool? enabled = null, in With()
52 public ulong Value;
53 public Fraction ValueResiduum;
55 public ulong Period { get; }
56 public Action Handler { get; }
57 public bool Enabled { get; }
58 public Direction Direction { get; }
59 public WorkMode WorkMode { get; }
60 public IEmulationElement Owner { get; }
61 public string LocalName { get; }
62 public long Step { get; }
63 public long Frequency { get; }
65 public Fraction Ratio { get; }
67 private static Fraction FrequencyToRatio(long desiredFrequency) in FrequencyToRatio()