Searched refs:byteArray (Results 1 – 3 of 3) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/ |
| D | ZMOD4xxx.cs | 168 …thAssertedLength(string hexstring, int expectedLenghtInBytes, out byte[] byteArray, out string err) in TryParseHexStringWithAssertedLength() argument 170 byteArray = new byte[expectedLenghtInBytes]; in TryParseHexStringWithAssertedLength() 179 if(!Misc.TryParseHexString(hexstring, out byteArray, elementSize: 1)) in TryParseHexStringWithAssertedLength()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/PL330_DMA/ |
| D | PL330_DMA_Instructions.cs | 416 …byte[] byteArray = Parent.machine.GetSystemBus(Parent).ReadBytes(selectedChannel.SourceAddress, re… in DoTransfer() 417 selectedChannel.localMFIFO.EnqueueRange(byteArray); in DoTransfer() 446 byte[] byteArray = selectedChannel.localMFIFO.DequeueRange(writeLength); in DoTransfer() 447 if(byteArray.Length != writeLength) in DoTransfer() 449 …bytes remaining in FIFO, but requested to write {1}. Aborting thread.", byteArray.Length, writeLen… in DoTransfer() 453 …Parent.machine.GetSystemBus(Parent).WriteBytes(byteArray, selectedChannel.DestinationAddress, cont… in DoTransfer()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | Misc.cs | 467 var byteArray = HexStringToByteArray(hexString); in TryParseHexString() 468 var byteLength = byteArray.Length; in TryParseHexString() 477 EndiannessSwapInPlace(byteArray, elementSize); in TryParseHexString() 479 Buffer.BlockCopy(byteArray, 0, outArray, 0, byteLength); in TryParseHexString()
|