| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/Wrappers/ |
| D | RegisterMapper.cs | 37 if (!map.ContainsKey(l)) in RegisterMapper() 39 map.Add(l, s); in RegisterMapper() 48 if (!map.ContainsKey(offset)) in ToString() 50 var closestCandidates = map.Keys.Where(k => k < offset).ToList(); in ToString() 54 name = string.Format("{0}+0x{1:x}", map[closest], offset - closest); in ToString() 63 name = map[offset]; in ToString() 69 private readonly Dictionary<long, string> map = new Dictionary<long, string>(); field in Antmicro.Renode.Peripherals.Bus.Wrappers.RegisterMapper
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/UI/XwtProvider/ |
| D | DllMap.cs | 58 var map = ( in MapLibraryName() 66 if (map != null) in MapLibraryName() 68 mappedLibName = map.Attribute("target").Value; in MapLibraryName()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | STM32_SYSCFG.cs | 90 var map = new Dictionary<long, DoubleWordRegister>(); in CreateRegisters() 107 map.Add((long)Registers.ExternalInterruptConfiguration1 + 4 * regNumber, reg); in CreateRegisters() 109 return new DoubleWordRegisterCollection(this, map); in CreateRegisters()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/ |
| D | BackendManager.cs | 25 map = new SerializableWeakKeyDictionary<IAnalyzable, IAnalyzableBackend>(); in BackendManager() 74 map[analyzable] = backend; 83 return map.TryGetValue(peripheral, out backend); in TryGetBackendFor() 89 var result = map.TryGetValue(element, out outValue); 275 private SerializableWeakKeyDictionary<IAnalyzable, IAnalyzableBackend> map; field in Antmicro.Renode.Peripherals.BackendManager
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/ |
| D | EFR32xG2_I2CController.cs | 18 var map = new Dictionary<long, DoubleWordRegister> in EFR32xG2_I2CController() 44 registers = new DoubleWordRegisterCollection(this, map); in EFR32xG2_I2CController()
|
| D | EFR32_I2CController.cs | 18 var map = new Dictionary<long, DoubleWordRegister> in EFR32_I2CController() 48 registers = new DoubleWordRegisterCollection(this, map); in EFR32_I2CController()
|
| D | STM32F7_I2C.cs | 114 var map = new Dictionary<long, DoubleWordRegister> { { in CreateRegisters() 301 return new DoubleWordRegisterCollection(this, map); in CreateRegisters()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/ |
| D | RiscvOpcodesParser.cs | 58 Dictionary<BaseRiscV.InstructionSet, IEnumerable<string>> map = null; in EnableRiscvOpcodesCounting() 61 map = opcodesFilesMap32; in EnableRiscvOpcodesCounting() 65 map = opcodesFilesMap64; in EnableRiscvOpcodesCounting() 72 if(!map.TryGetValue(instructionSet, out var resourceNames)) in EnableRiscvOpcodesCounting()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/ |
| D | ENC28J60.cs | 179 foreach(var map in maps) in ENC28J60() 181 map.Add(0x1B, eie); // EIE in ENC28J60() 182 map.Add(0x1C, eir); // EIR in ENC28J60() 183 map.Add(0x1D, estat); // ESTAT in ENC28J60() 184 map.Add(0x1E, econ2); // ECON2 in ENC28J60() 185 map.Add(0x1F, econ1); // ECON1 in ENC28J60()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/opcodes/ |
| D | opcodes-pseudo | 6 # SYSTEM pseudo-instructions that map to csr*
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/ |
| D | SynopsysDWCEthernetQualityOfService_DMA.cs | 93 public void DefineChannelRegisters(ref Dictionary<long, DoubleWordRegister> map) in DefineChannelRegisters() argument 96 map = map.Concat(new Dictionary<long, DoubleWordRegister>() in DefineChannelRegisters()
|
| D | SynopsysDWCEthernetQualityOfService_Registers.cs | 1151 var map = new Dictionary<long, DoubleWordRegister>() in CreateDMARegisterMap() 1216 channel.DefineChannelRegisters(ref map); in CreateDMARegisterMap() 1219 return map; in CreateDMARegisterMap()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | Misc.cs | 421 …ource MinBy<TSource, T>(this IEnumerable<TSource> source, Func<TSource, T> map) where T: IComparab… 423 return source.Aggregate((a, b) => map(a).CompareTo(map(b)) < 0 ? a : b);
|