Searched refs:DataLengthInBytes (Results 1 – 1 of 1) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | OpenTitan_AES.cs | 28 …inputData = new ByteArrayWithAccessTracking(this, DataLengthInBytes / sizeof(uint), sizeof(uint), … in OpenTitan_AES() 29 …outputData = new ByteArrayWithAccessTracking(this, DataLengthInBytes / sizeof(uint), sizeof(uint),… in OpenTitan_AES() 112 … Registers.InputData_0.DefineMany(this, DataLengthInBytes / sizeof(uint), (register, idx) => in DefineRegisters() 125 … Registers.OutputData_0.DefineMany(this, DataLengthInBytes / sizeof(uint), (register, idx) => in DefineRegisters() 183 … inputData.SetArrayTo(GetRandomArrayOfLength(DataLengthInBytes), trackAccess: false); in DefineRegisters() 191 … outputData.SetArrayTo(GetRandomArrayOfLength(DataLengthInBytes), trackAccess: false); in DefineRegisters() 265 var output = new byte[DataLengthInBytes]; in TransformData() 279 … bytesProcessed = transformMethod.TransformBlock(data, 0, DataLengthInBytes, output, 0); in TransformData() 328 private const int DataLengthInBytes = 16; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_AES
|