Home
last modified time | relevance | path

Searched refs:AddRange (Results 1 – 25 of 43) sorted by relevance

12

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfilerHeader.cs29 buffer.AddRange(BitConverter.GetBytes(cpus.Count)); in RegisterPeripherals()
33 … buffer.AddRange(BitConverter.GetBytes(machine.SystemBus.GetCPUSlot(cpu.Peripheral as ICPU))); in RegisterPeripherals()
34 buffer.AddRange(BitConverter.GetBytes(cpu.Name.Length)); in RegisterPeripherals()
35 buffer.AddRange(Encoding.ASCII.GetBytes(cpu.Name)); in RegisterPeripherals()
39 buffer.AddRange(BitConverter.GetBytes(busPeripherals.Count())); in RegisterPeripherals()
47 buffer.AddRange(BitConverter.GetBytes(name.Length)); in RegisterPeripherals()
48 buffer.AddRange(Encoding.ASCII.GetBytes(name)); in RegisterPeripherals()
50 buffer.AddRange(BitConverter.GetBytes(registrationPoint.Range.StartAddress)); in RegisterPeripherals()
51 buffer.AddRange(BitConverter.GetBytes(registrationPoint.Range.EndAddress)); in RegisterPeripherals()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Collections/
DMultiValueDictionaryTests.cs27 multiDict.AddRange("key2", values2); in ShouldAddRangeAndRetrieveViaIterator()
28 multiDict.AddRange("key1", values1); in ShouldAddRangeAndRetrieveViaIterator()
69 multiDict.AddRange("key2", values2); in ShouldClear()
70 multiDict.AddRange("key1", values1); in ShouldClear()
84 multiDict.AddRange(100, values2); in ShouldContainValue()
85 multiDict.AddRange(-5, values1); in ShouldContainValue()
100 multiDict.AddRange("key2", values2); in ShouldContainKey()
101 multiDict.AddRange("key1", values1); in ShouldContainKey()
116 multiDict.AddRange("key2", values2); in ShouldContainKeyValue()
117 multiDict.AddRange("key1", values1); in ShouldContainKeyValue()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DMonitorInfo.cs34 names.AddRange(Methods.Select(x => x.Name));
38 names.AddRange(Properties.Select(x => x.Name));
42 names.AddRange(Fields.Select(x => x.Name));
46 names.AddRange(Indexers.Select(x => x.Name));
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Xtensa/
DXtensaRegisters.tt15 …GENERAL_REGISTERS.AddRange(new[] { "AR0", "AR1", "AR2", "AR3", "AR4", "AR5" , "AR6" , "AR7" , "AR8…
18 UNSETTABLE_REGISTERS.AddRange(new[] { "INTERRUPT" });
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/Wrappers/
DRegisterMapper.cs26 interestingEnums.AddRange(enumsWithAttribute); in RegisterMapper()
28 …interestingEnums.AddRange(types.Where(t => t.BaseType == typeof(Enum) && t.Name.IndexOf("register"… in RegisterMapper()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DMultiValueDictionary.cs62 public void AddRange(TKey key, IEnumerable<TValue> values) in AddRange() method in Antmicro.Renode.Utilities.Collections.MultiValueDictionary
69 list.AddRange(values); in AddRange()
77 existingMultiple.AddRange(values); in AddRange()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DRiscV32Registers.tt38 … GENERAL_REGISTERS.AddRange(new[] { "X0", "X1", "X2", "X3", "X4", "X5" , "X6" , "X7" , "X8" , "X9",
43 UNSETTABLE_REGISTERS.AddRange(new[] {"X0", "VLENB"});
DRiscV64Registers.tt38 … GENERAL_REGISTERS.AddRange(new[] { "X0", "X1", "X2", "X3", "X4", "X5" , "X6" , "X7" , "X8" , "X9",
43 UNSETTABLE_REGISTERS.AddRange(new[] {"X0", "VLENB"});
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitor.cs158 … parameters.AddRange(constructor.GetParameters().Skip(1).Select(x => x.DefaultValue)); in InitializeAutoCommand()
955 …suggestions.AddRange(SuggestFiles(allButLast, String.Empty, directory, file)); //we need to filter… in SuggestCommands()
969 … suggestions.AddRange(SuggestFiles(allButLast, pathEntry, directory, file)); in SuggestCommands()
984 …options.AddRange(variables.Keys.Concat(macros.Keys).Where(x => x.StartsWith(String.Format("{0}{1}"… in SuggestCommands()
988 suggestions.AddRange(options.Select(x => allButLast + '$' + x)); in SuggestCommands()
999 … suggestions.AddRange(sugs.Select(s => string.Format("{0}{1}", allButLastOptional, s))); in SuggestCommands()
1021 …suggestions.AddRange(devInfo.Where(x => x.StartsWith(currentCommandSplit[currentCommandSplit.Lengt… in SuggestCommands()
1030 sugg.AddRange(GetAllAvailableNames()); in SuggestCommands()
1031 sugg.AddRange(pythonRunner.GetPythonCommands()); in SuggestCommands()
1032 sugg.AddRange(aliases.Keys); in SuggestCommands()
[all …]
DMonitorPath.cs91 pathEntries.AddRange(GetDirEntries(path)); in Append()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm64/
DARMv8RRegisters.tt15 …GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R1…
DARMv8ARegisters.tt18 GENERAL_REGISTERS.AddRange(new[] {
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/X86/
DX86Registers.tt18 …GENERAL_REGISTERS.AddRange(new[] { "EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI", "EIP", …
DX86_64Registers.tt19 GENERAL_REGISTERS.AddRange(new[] { "RAX", "RBX", "RCX", "RDX", "RSI", "RDI", "RBP", "RSP",
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DArmRegisters.tt19 …GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R1…
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Network/
DEchoService.cs48 responseBuffer.AddRange(data); in Send()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/PowerPC/
DPowerPc64Registers.tt20 GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9",
DPowerPcRegisters.tt20 GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9",
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DI2CHost.cs60 returnedData.AddRange(currentSlave.Read(count - returnedData.Count)); in ReadBytes()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm-M/
DCortexMRegisters.tt26 …GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R1…
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/IEEE802_15_4/
DFrame.cs189 bytes.AddRange(AddressInformation.Bytes); in Encode()
193 bytes.AddRange(Payload); in Encode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Sparc/
DSparcRegisters.tt20 … GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5" , "R6" , "R7" , "R8" , "R9",
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DSTM32H7_CRYPTO.cs424 aad.AddRange(bytes); in ProcessHeader()
435 payload.AddRange(bytes); in ProcessPayload()
447 payload.AddRange(output); in ProcessPayload()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Wireless/
DSlipRadio.cs131 …result.AddRange(new byte[] {(byte)(crc & 0xFF), (byte)((crc >> 8) & 0xFF), (byte)((crc >> 16) & 0x… in Encapsulate()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DSocketCANBridge.cs160 buffer.AddRange(data); in TransmitLoop()

12