Home
last modified time | relevance | path

Searched refs:byteCount (Results 1 – 5 of 5) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/
DSynopsysDWCEthernetQualityOfService.cs135 var byteCount = 1 + (uint)frame.Bytes.Length; in SendFrame()
136 IncrementByteCounter(txByteCounter, txByteCounterInterrupt, byteCount); in SendFrame()
137 IncrementByteCounter(txGoodByteCounter, txGoodByteCounterInterrupt, byteCount); in SendFrame()
164 var byteCount = 1 + writeBackStructure.packetLength; in UpdateRxCounters()
165 IncrementByteCounter(rxByteCounter, rxByteCounterInterrupt, byteCount); in UpdateRxCounters()
179 IncrementByteCounter(rxGoodByteCounter, rxGoodByteCounterInterrupt, byteCount); in UpdateRxCounters()
195 IncreaseIpcCounter(IpcCounter.IpV4Good, byteCount); in UpdateRxCounters()
198 IncreaseIpcCounter(IpcCounter.IpV4HeaderError, byteCount); in UpdateRxCounters()
203 IncreaseIpcCounter(IpcCounter.IpV6Good, byteCount); in UpdateRxCounters()
206 IncreaseIpcCounter(IpcCounter.IpV6HeaderError, byteCount); in UpdateRxCounters()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/
DAthenaX5200_BigIntegerHelper.cs16 public static BigInteger CreateBigInteger(byte[] bytes, int byteCount) in CreateBigInteger() argument
24 return new BigInteger(bytes.Take(byteCount).Reverse().ToArray()); in CreateBigInteger()
53 var byteCount = (int)(length * WordSize); in StoreBigIntegerBytes()
54 if(resultBytes.Length > byteCount) in StoreBigIntegerBytes()
58 resultBytes = resultBytes.Take(byteCount).ToArray(); in StoreBigIntegerBytes()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceBinaryWriter.cs45 var byteCount = Encoding.ASCII.GetByteCount(tripleAndModelString); in WriteHeader()
48 stream.WriteByte((byte)byteCount); in WriteHeader()
49 stream.Write(Encoding.ASCII.GetBytes(tripleAndModelString), 0, byteCount); in WriteHeader()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DSTM32H7_SPI.cs349 var byteCount = (int)packetSizeBits.Value / 8 + 1; in TryTransmitData()
356 BitHelper.GetBytesFromValue(bytes, 0, value, byteCount, reverseBytes); in TryTransmitData()
358 for(var i = 0; i < byteCount; i++) in TryTransmitData()
363 receiveFifo.Enqueue(BitHelper.ToUInt32(bytes, 0, byteCount, reverseBytes)); in TryTransmitData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DQuectelModem.cs965 private void EnterDataMode(int? byteCount, Action<byte[]> callback) in EnterDataMode() argument
967 if(byteCount == 0) in EnterDataMode()
974 dataBytesRemaining = byteCount; in EnterDataMode()
988 private void BytesReceived(int connectionId, int byteCount) in BytesReceived() argument
1292 … private void BytesReceived(int byteCount) => Owner.BytesReceived(ConnectionId, byteCount); in BytesReceived() argument