Searched refs:bytesRead (Results 1 – 6 of 6) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/ |
| D | AthenaX5200_BigIntegerHelper.cs | 34 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/ |
| D | OsXTapInterface.cs | 140 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()
|
| D | WindowsTapInterface.cs | 225 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/ |
| D | MPFS_SDController.cs | 95 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/ |
| D | NRF52840_UART.cs | 351 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/ |
| D | EFR32xG24_Radio.cs | 9353 var bytesRead = BytesNumber; 9354 for(uint i = 0; i < bytesRead; i++) 9359 index, bytesRead, value, offset);
|