Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DByteArrayWithAccessTracking.cs18 …ByteArrayWithAccessTracking(IPeripheral parent, uint partsCount, uint accessByteWidth, string name) in ByteArrayWithAccessTracking() argument
20 if(accessByteWidth != 4) in ByteArrayWithAccessTracking()
26 this.accessByteWidth = accessByteWidth; in ByteArrayWithAccessTracking()
28 array = new byte[partsCount * accessByteWidth]; in ByteArrayWithAccessTracking()
53 var offset = part * accessByteWidth; in SetPart()
56 for(var i = 0; i < accessByteWidth; i++) in SetPart()
71 … var value = BitHelper.ToUInt32(array, (int)(part * accessByteWidth), (int)accessByteWidth, true); in GetPartAsDoubleWord()
125 private readonly uint accessByteWidth; field in Antmicro.Renode.Peripherals.Utilities.ByteArrayWithAccessTracking