| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/ |
| D | BusRegistration.cs | 64 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Bus.BusRegistration 66 …n 17 * StartingPoint.GetHashCode() + 23 * Offset.GetHashCode() + 101 * (Initiator?.GetHashCode() ?… in GetHashCode() 67 + 401 * (StateMask?.GetHashCode() ?? 0) + 409 * (Condition?.GetHashCode() ?? 0); in GetHashCode()
|
| D | BusMultiRegistration.cs | 50 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Bus.BusMultiRegistration 54 return 17 * base.GetHashCode() + 101 * ConnectionRegionName.GetHashCode(); in GetHashCode()
|
| D | BusRangeRegistration.cs | 69 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Bus.BusRangeRegistration 73 return 17 * base.GetHashCode() + 101 * Range.Size.GetHashCode(); in GetHashCode()
|
| D | SymbolAddress.cs | 116 public override int GetHashCode() in GetHashCode() method 118 return RawValue.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | PluginDescriptor.cs | 80 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Utilities.PluginDescriptor 84 var hash = Name.GetHashCode(); in GetHashCode() 85 hash = (hash * 397) ^ Version.GetHashCode(); in GetHashCode() 86 hash = (hash * 397) ^ Description.GetHashCode(); in GetHashCode() 87 hash = (hash * 397) ^ Vendor.GetHashCode(); in GetHashCode() 92 hash = (hash * 397) ^ mode.GetHashCode(); in GetHashCode() 99 hash = (hash * 397) ^ dependency.GetHashCode(); in GetHashCode()
|
| D | WeakWrapper.cs | 51 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Utilities.T 72 objHashCode = obj.GetHashCode(); in WeakWrapper()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/ |
| D | MACAddress.cs | 119 public override int GetHashCode() in GetHashCode() method 123 …return A.GetHashCode() ^ B.GetHashCode() ^ C.GetHashCode() ^ D.GetHashCode() ^ E.GetHashCode() ^ F… in GetHashCode()
|
| D | USBRegistrationPoint.cs | 31 public override int GetHashCode () in GetHashCode() method in Antmicro.Renode.Core.Structure.USBRegistrationPoint 33 return base.GetHashCode (); in GetHashCode()
|
| D | NumberRegistrationPoint.cs | 50 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Core.Structure.NumberRegistrationPoint 54 return (Address != null ? Address.GetHashCode() : 0); in GetHashCode()
|
| D | TypedNumberRegistrationPoint.cs | 61 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Core.Structure.TypedNumberRegistrationPoint 65 return (Address != null ? new Tuple<Type, T>(Type, Address).GetHashCode() : 0); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Network/ |
| D | PHYRegistrationPoint.cs | 44 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Network.PHYRegistrationPoint 48 return Id.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/ |
| D | CPURegistrationPoint.cs | 47 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.CPU.CPURegistrationPoint 51 return Slot.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/ |
| D | Interval.cs | 48 public int GetHashCode(IInterval<TScalar> obj) in GetHashCode() method in Antmicro.Renode.Utilities.Collections.IntervalComparer 54 int hash1 = obj.Start.GetHashCode(); in GetHashCode() 55 int hash2 = obj.End.GetHashCode(); in GetHashCode()
|
| D | SimpleCache.cs | 88 public override int GetHashCode() in GetHashCode() method 93 var hash = generator.GetHashCode(); in GetHashCode() 97 hash ^= ShiftAndWrap(parameterT1.GetHashCode(), 2); in GetHashCode() 102 hash ^= ShiftAndWrap(parameterT2.GetHashCode(), 4); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | SimpleCSR.cs | 35 public override int GetHashCode() in GetHashCode() method 37 return (int)Mode ^ ((int)Number << 3) ^ Name.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/ |
| D | Command.cs | 54 public int GetHashCode(Command obj) in GetHashCode() method in Antmicro.Renode.UserInterface.Commands.CommandComparer 56 return obj.Name.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Foreign/ |
| D | Player.cs | 103 public override int GetHashCode() in GetHashCode() method 107 … return (Name != null ? Name.GetHashCode() : 0) ^ (Handler != null ? Handler.GetHashCode() : 0); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/IEEE802_15_4/ |
| D | Address.cs | 55 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.Address 57 return Bytes.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | SimpleCacheTests.cs | 252 return val.HasValue.ToString() + "abcde".GetHashCode(); in NullParameterGenerator() 257 return val.HasValue.ToString() + val.HasValue.ToString() + "abcde".GetHashCode(); in NullParametersGenerator() 267 return obj.GetHashCode() + " this is unit test"; in Generator2() 272 return obj.GetHashCode().ToString() + obj_1; in Generator3() 277 return obj.GetHashCode().ToString() + obj_1 + " this is another test"; in Generator4()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Plugins/ |
| D | PluginManager.cs | 226 public int GetHashCode(TypeDefinition obj) in GetHashCode() method in Antmicro.Renode.Plugins.PluginManager.TypeDefinitionComparer 228 var hash = obj.Module.Mvid.GetHashCode(); in GetHashCode() 229 hash = (hash * 397) ^ obj.MetadataToken.GetHashCode(); in GetHashCode() 230 hash = (hash * 397) ^ obj.HasGenericParameters.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Backends/Display/ |
| D | Pixel.cs | 37 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Backends.Display.Pixel
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/ |
| D | LogLevel.cs | 174 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Logging.LogLevel 176 return type.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Range.cs | 192 public override int GetHashCode() in GetHashCode() method 196 return 7 * StartAddress.GetHashCode() ^ 31 * EndAddress.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Tools/Network/ |
| D | Switch.cs | 195 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Tools.Network.Switch.InterfaceDescriptor 197 return Interface.GetHashCode(); in GetHashCode()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | BreakpointCommand.cs | 215 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Utilities.GDB.Commands.BreakpointCommand.WatchpointDescriptor 220 + 17 * Hook.GetHashCode(); in GetHashCode()
|