Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceFormat.cs93 var byteLength = sizeof(ulong) + sizeof(ulong) + sizeof(ulong) + 1; in GetBinaryRepresentation()
94 var output = new byte[byteLength]; in GetBinaryRepresentation()
142 var byteLength = sizeof(ulong) * 2; in GetBinaryRepresentation()
143 var output = new byte[byteLength]; in GetBinaryRepresentation()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Debug/
DCPUTracer.cs168 var byteLength = size * sizeof(int); in TranslateParameter()
169 … Buffer.BlockCopy(bus.ReadBytes(value, byteLength, context: cpu), 0, intResult, 0, byteLength); in TranslateParameter()
175 var byteLength = size * sizeof(uint); in TranslateParameter()
176 … Buffer.BlockCopy(bus.ReadBytes(value, byteLength, context: cpu), 0, uintResult, 0, byteLength); in TranslateParameter()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DAmbiqApollo4_Security.cs35 var byteLength = (int)wordLength.Value * 4; in CalculateCrc32()
36 …> address range; seed: 0x{2:X8}", address.Value, (long)address.Value + byteLength, crcSeedOrResult… in CalculateCrc32()
48 data = systemBus.ReadBytes(address.Value, byteLength, onlyMemory: true); in CalculateCrc32()
DOpenTitan_OneTimeProgrammableMemoryController.cs825 public ItemSizeAttribute(int byteLength, bool is64Bit = false) in ItemSizeAttribute() argument
828 ByteLength = byteLength; in ItemSizeAttribute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs468 var byteLength = byteArray.Length; in TryParseHexString()
469 if(byteLength % elementSize != 0) in TryParseHexString()
474 outArray = new T[byteLength / elementSize]; in TryParseHexString()
479 Buffer.BlockCopy(byteArray, 0, outArray, 0, byteLength); in TryParseHexString()