Home
last modified time | relevance | path

Searched refs:bytesRead (Results 1 – 6 of 6) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DAthenaX5200_BigIntegerHelper.cs34 manager.TryReadBytes(register, (int)(wordCount * 4), out var bytesRead); in CreateBigIntegerFromMemory()
39 Misc.EndiannessSwapInPlace(bytesRead, WordSize); in CreateBigIntegerFromMemory()
45 Array.Copy(bytesRead, 0, bytesReadPadded, 0, (int)(wordCount * 4)); in CreateBigIntegerFromMemory()
48 return new BigInteger(bytesRead); in CreateBigIntegerFromMemory()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DOsXTapInterface.cs140 int bytesRead = await deviceFile.ReadAsync(buffer, 0, buffer.Length, cts.Token); in ReadPacketAsync()
142 if(bytesRead > 0) in ReadPacketAsync()
144 byte[] packet = new byte[bytesRead]; in ReadPacketAsync()
145 Array.Copy(buffer, packet, bytesRead); in ReadPacketAsync()
DWindowsTapInterface.cs225 int bytesRead = stream.Read(buffer, 0, MTU); in TransmitLoop()
226 if(bytesRead > 0) in TransmitLoop()
228 var packet = new byte[bytesRead]; in TransmitLoop()
229 Array.Copy(buffer, packet, bytesRead); in TransmitLoop()
230 this.Log(LogLevel.Noisy, "Received {0} bytes frame", bytesRead); in TransmitLoop()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DMPFS_SDController.cs95 bytesRead = 0; in Reset()
474 bytesRead = 0; in ReadCard()
522 bytesRead += (uint)internalBytes.Length; in ReadBuffer()
524 if(bytesRead >= (blockCountField.Value * blockSizeField.Value) || !internalBuffer.Any()) in ReadBuffer()
527 bytesRead = 0; in ReadBuffer()
548 private uint bytesRead; field in Antmicro.Renode.Peripherals.SD.MPFS_SDController
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DNRF52840_UART.cs351 var bytesRead = sysbus.ReadBytes(txPointer.Value, (int)txMaximumCount.Value); in StartTx()
352 foreach(var character in bytesRead) in StartTx()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DEFR32xG24_Radio.cs9353 var bytesRead = BytesNumber;
9354 for(uint i = 0; i < bytesRead; i++)
9359 index, bytesRead, value, offset);