Home
last modified time | relevance | path

Searched refs:GetHashCode (Results 1 – 25 of 33) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DBusRegistration.cs64 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()
DBusMultiRegistration.cs50 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Bus.BusMultiRegistration
54 return 17 * base.GetHashCode() + 101 * ConnectionRegionName.GetHashCode(); in GetHashCode()
DBusRangeRegistration.cs69 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Peripherals.Bus.BusRangeRegistration
73 return 17 * base.GetHashCode() + 101 * Range.Size.GetHashCode(); in GetHashCode()
DSymbolAddress.cs116 public override int GetHashCode() in GetHashCode() method
118 return RawValue.GetHashCode(); in GetHashCode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DPluginDescriptor.cs80 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()
DWeakWrapper.cs51 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/
DMACAddress.cs119 public override int GetHashCode() in GetHashCode() method
123 …return A.GetHashCode() ^ B.GetHashCode() ^ C.GetHashCode() ^ D.GetHashCode() ^ E.GetHashCode() ^ F… in GetHashCode()
DUSBRegistrationPoint.cs31 public override int GetHashCode () in GetHashCode() method in Antmicro.Renode.Core.Structure.USBRegistrationPoint
33 return base.GetHashCode (); in GetHashCode()
DNumberRegistrationPoint.cs50 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Core.Structure.NumberRegistrationPoint
54 return (Address != null ? Address.GetHashCode() : 0); in GetHashCode()
DTypedNumberRegistrationPoint.cs61 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/
DPHYRegistrationPoint.cs44 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/
DCPURegistrationPoint.cs47 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/
DInterval.cs48 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()
DSimpleCache.cs88 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/
DSimpleCSR.cs35 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/
DCommand.cs54 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/
DPlayer.cs103 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/
DAddress.cs55 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/
DSimpleCacheTests.cs252 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/
DPluginManager.cs226 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/
DPixel.cs37 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Backends.Display.Pixel
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/
DLogLevel.cs174 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/
DRange.cs192 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/
DSwitch.cs195 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/
DBreakpointCommand.cs215 public override int GetHashCode() in GetHashCode() method in Antmicro.Renode.Utilities.GDB.Commands.BreakpointCommand.WatchpointDescriptor
220 + 17 * Hook.GetHashCode(); in GetHashCode()

12