Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/
DLogLevel.cs64 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/
DPlayer.cs111 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/
DSymbol.cs198 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/
DAmbiqApollo4_RTC.cs463 …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()
DMAX32650_RTC.cs71 …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()
DMPFS_RTC.cs109 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()
DSTM32F4_RTC.cs546 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/
DMisc.cs1320 …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()