Home
last modified time | relevance | path

Searched refs:DestinationAddress (Results 1 – 11 of 11) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DNPCX_MDMA.cs143 … valueProviderCallback: _ => BitHelper.GetValue(context.DestinationAddress, 0, 20), in DefineChannel0Registers()
144 …writeCallback: (_, value) => BitHelper.SetMaskedValue(ref context.DestinationAddress, (uint)value,… in DefineChannel0Registers()
146 … valueProviderCallback: _ => BitHelper.GetValue(context.DestinationAddress, 20, 12)); in DefineChannel0Registers()
150 … valueProviderCallback: _ => context.DestinationAddress + context.CurrentTransferCount); in DefineChannel0Registers()
168 valueProviderCallback: _ => context.DestinationAddress); in DefineChannel1Registers()
245 … new Place(DestinationAddress + (uint)(TransferCount - CurrentTransferCount)), in TryPerformCopy()
256 new Place(DestinationAddress), in TryPerformCopy()
282 DestinationAddress = defaultDestinationAddress; in Reset()
294 public uint DestinationAddress; field in Antmicro.Renode.Peripherals.DMA.NPCX_MDMA.DMAChannelContext
DOmapDma.cs64 case Channel.Offset.DestinationAddress: in ReadDoubleWord()
65 return channels[index].DestinationAddress; in ReadDoubleWord()
160 case Channel.Offset.DestinationAddress: in WriteDoubleWord()
161 channels[index].DestinationAddress = value; in WriteDoubleWord()
262 public uint DestinationAddress; field
285 DestinationAddress = 0x20, enumerator
DEOSS3_SPI_DMA.cs174 Registers.DestinationAddress.Define(this) in DefineRegisters()
230 DestinationAddress = 0x04, enumerator
DRenesasDA_DMABase.cs114 valueProviderCallback: (_) => channels[channelID].DestinationAddress, in BuildRegisterMap()
115 writeCallback: (_, val) => {channels[channelID].DestinationAddress = val; }, in BuildRegisterMap()
260 public ulong DestinationAddress property in Antmicro.Renode.Peripherals.DMA.RenesasDA_DMABase.Channel
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/IEEE802_15_4/
DAddressInformation.cs20DestinationAddress = new Address(new ArraySegment<byte>(data.Array, data.Offset + 2, destinationAd… in AddressInformation()
21 internalOffset = 2 + DestinationAddress.Bytes.Count; in AddressInformation()
44 public Address DestinationAddress { get; private set; } property in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.AddressInformation
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/PL330_DMA/
DPL330_DMA_Instructions.cs224 Parent.channels[channelIndex.Value].DestinationAddress += immediate; in ExecuteInner()
228 Parent.channels[channelIndex.Value].DestinationAddress -= immediate; in ExecuteInner()
453 …machine.GetSystemBus(Parent).WriteBytes(byteArray, selectedChannel.DestinationAddress, context: Pa… in DoTransfer()
457 selectedChannel.DestinationAddress += (uint)writeLength; in DoTransfer()
474 …Enumerable.Repeat((byte)0, writeLength).ToArray(), selectedChannel.DestinationAddress, context: Pa… in DoTransfer()
478 selectedChannel.DestinationAddress += (uint)writeLength; in DoTransfer()
620 selectedChannel.DestinationAddress = immediate; in ExecuteInner()
886 selectedChannel.DestinationAddress, in DoTransfer()
896 selectedChannel.DestinationAddress = (uint)response.WriteAddress.Value; in DoTransfer()
DPL330_DMA.cs510 DestinationAddress = 0; in Reset()
546 ….WithValueField(0, 32, FieldMode.Read, valueProviderCallback: _ => DestinationAddress, name: $"Cha… in DefineRegisters()
561 public uint DestinationAddress { get; set; } property in Antmicro.Renode.Peripherals.DMA.PL330_DMA.Channel
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/PCI/
DMPFS_PCIe.cs272 …hangeCallback: (_, value) => BitHelper.UpdateWithShifted(ref table.DestinationAddress, value, 12, … in CreateAddressTranslationRegisters()
273 …valueProviderCallback: _ => (uint)BitHelper.GetValue(table.DestinationAddress, 12, 20), name: "TRS… in CreateAddressTranslationRegisters()
356 return address - SourceAddress + DestinationAddress; in Translate()
382 public ulong DestinationAddress; field in Antmicro.Renode.Peripherals.PCI.MPFS_PCIe.AddressTranslationTable
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Network/
DEthernetFrame.cs124 return ip != null ? ip.DestinationAddress : null;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DCC2538RF.cs693 …if(!frame.AddressInformation.DestinationAddress.IsShortBroadcast && !frame.AddressInformation.Dest… in ShouldWeAcceptThisFrame()
702 if(!frame.AddressInformation.DestinationAddress.Equals(extendedAddress)) in ShouldWeAcceptThisFrame()
704 …cted to {1}.", extendedAddress.GetValue(), frame.AddressInformation.DestinationAddress.GetValue()); in ShouldWeAcceptThisFrame()
DCC2520.cs371 …if(!frame.AddressInformation.DestinationAddress.IsShortBroadcast && !frame.AddressInformation.Dest… in ShouldAcceptFrame()
373 …ing frame.", localShortAddress.GetValue(), frame.AddressInformation.DestinationAddress.GetValue()); in ShouldAcceptFrame()
380 if(!frame.AddressInformation.DestinationAddress.Equals(localExtendedAddress)) in ShouldAcceptFrame()
382 … frame.", localExtendedAddress.GetValue(), frame.AddressInformation.DestinationAddress.GetValue()); in ShouldAcceptFrame()