| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/ |
| D | LogLevel.cs | 64 public static bool operator <(LogLevel first, LogLevel second) in operator <() argument 66 return first.type < second.type; in operator <() 69 public static bool operator <=(LogLevel first, LogLevel second) in operator <=() argument 71 return first.type <= second.type; in operator <=() 74 public static bool operator >(LogLevel first, LogLevel second) in operator >() argument 76 return first.type > second.type; in operator >() 79 public static bool operator >=(LogLevel first, LogLevel second) in operator >=() argument 81 return first.type >= second.type; in operator >=() 84 public static bool operator ==(LogLevel first, LogLevel second) in operator ==() argument 86 if(Object.ReferenceEquals(null, first) ^ Object.ReferenceEquals(null, second)) in operator ==() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Foreign/ |
| D | Player.cs | 111 public static bool operator==(NameAndHandler first, NameAndHandler second) in operator ==() 113 return first.Name == second.Name && first.Handler == second.Handler; in operator ==() 116 public static bool operator!=(NameAndHandler first, NameAndHandler second) in operator !=() 118 return !(first == second); in operator !=()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | Symbol.cs | 198 public bool IsMoreImportantThan(Symbol second) in IsMoreImportantThan() argument 204 … if(string.IsNullOrWhiteSpace(second.Name) || !Enum.IsDefined(typeof(SymbolType), second.Type)) in IsMoreImportantThan() 208 return (Type == second.Type in IsMoreImportantThan() 209 && (BindingImportance[Binding] - BindingImportance[second.Binding]) > 0) in IsMoreImportantThan() 210 || ((TypeImportance[Type] - TypeImportance[second.Type]) > 0); in IsMoreImportantThan()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/ |
| D | AmbiqApollo4_RTC.cs | 463 …rvals interval, int month, int weekday, int day, int hour, int minute, int second, int millisecond) in UpdateAlarm() argument 494 currentDateTime.Hour, currentDateTime.Minute, second, millisecond); in UpdateAlarm() 499 currentDateTime.Hour, minute, second, millisecond); in UpdateAlarm() 504 minute, second, millisecond); in UpdateAlarm() 509 minute, second, millisecond); in UpdateAlarm() 516 … firstAlarm = new DateTime(currentDateTime.Year, currentDateTime.Month, day, hour, minute, second, in UpdateAlarm() 521 … firstAlarm = new DateTime(currentDateTime.Year, month, day, hour, minute, second, millisecond); in UpdateAlarm()
|
| D | MAX32650_RTC.cs | 71 …onth = null, int? day = null, int? hour = null, int? minute = null, int? second = null, double? mi… in SetDateTime() argument 73 SetDateTime(CurrentDateTime.With(year, month, day, hour, minute, second, millisecond)); in SetDateTime()
|
| D | MPFS_RTC.cs | 109 second: (int)BitHelper.GetMaskedValue(value, 0, 8), in DefineRegisters() 173 … writeCallback: (_, value) => timeToUpload = timeToUpload.With(second: (int)value)) in DefineRegisters() 225 … writeCallback: (_, value) => timeToUpload = timeToUpload.With(second: (int)value)) in DefineRegisters()
|
| D | STM32F4_RTC.cs | 546 return timeState.With(second: value); in UpdateTimeState() 857 get => second; 861 second = value; 990 second = 0; in Reset() 1131 private int second; field in Antmicro.Renode.Peripherals.Timers.STM32F4_RTC.AlarmConfig
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | Misc.cs | 1320 …onth = null, int? day = null, int? hour = null, int? minute = null, int? second = null, double? mi… in With() argument 1328 second ?? @this.Second); in With()
|