Home
last modified time | relevance | path

Searched refs:map (Results 1 – 13 of 13) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/Wrappers/
DRegisterMapper.cs37 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/
DDllMap.cs58 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/
DSTM32_SYSCFG.cs90 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/
DBackendManager.cs25 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/
DEFR32xG2_I2CController.cs18 var map = new Dictionary<long, DoubleWordRegister> in EFR32xG2_I2CController()
44 registers = new DoubleWordRegisterCollection(this, map); in EFR32xG2_I2CController()
DEFR32_I2CController.cs18 var map = new Dictionary<long, DoubleWordRegister> in EFR32_I2CController()
48 registers = new DoubleWordRegisterCollection(this, map); in EFR32_I2CController()
DSTM32F7_I2C.cs114 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/
DRiscvOpcodesParser.cs58 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/
DENC28J60.cs179 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/
Dopcodes-pseudo6 # SYSTEM pseudo-instructions that map to csr*
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/
DSynopsysDWCEthernetQualityOfService_DMA.cs93 public void DefineChannelRegisters(ref Dictionary<long, DoubleWordRegister> map) in DefineChannelRegisters() argument
96 map = map.Concat(new Dictionary<long, DoubleWordRegister>() in DefineChannelRegisters()
DSynopsysDWCEthernetQualityOfService_Registers.cs1151 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/
DMisc.cs421 …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);