Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_AES.cs180 …initializationVector.SetArrayTo(GetRandomArrayOfLength(InitializationVectorLengthInBytes), trackAc… in DefineRegisters()
181 …initialKeyShare_0.SetArrayTo(GetRandomArrayOfLength(InitialKeyShareLengthInBytes), trackAccess: fa… in DefineRegisters()
182 …initialKeyShare_1.SetArrayTo(GetRandomArrayOfLength(InitialKeyShareLengthInBytes), trackAccess: fa… in DefineRegisters()
183 … inputData.SetArrayTo(GetRandomArrayOfLength(DataLengthInBytes), trackAccess: false); in DefineRegisters()
191 … outputData.SetArrayTo(GetRandomArrayOfLength(DataLengthInBytes), trackAccess: false); in DefineRegisters()
281 outputData.SetArrayTo(output, trackAccess: false); in TransformData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DByteArrayWithAccessTrackingTests.cs124 testArray.SetArrayTo(data); in HandleAccessingOutputDataThroughRegisters()
136 Assert.Throws<ArgumentException>(() => testArray.SetArrayTo(data)); in ShouldThrowWhenSettingArrayWithWrongLength()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DByteArrayWithAccessTracking.cs76 public void SetArrayTo(byte[] data, bool trackAccess = true) in SetArrayTo() method in Antmicro.Renode.Peripherals.Utilities.ByteArrayWithAccessTracking