Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/
DOpenTitan_ROMController.cs98 if(!Misc.TryParseHexString(value, out temp, sizeof(ulong), endiannessSwap: true))
116 if(!Misc.TryParseHexString(value, out key, sizeof(ulong), endiannessSwap: true))
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DZMOD4xxx.cs179 if(!Misc.TryParseHexString(hexstring, out byteArray, elementSize: 1)) in TryParseHexStringWithAssertedLength()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_OneTimeProgrammableMemoryController.cs437 if(!Misc.TryParseHexString(valueChain, out outputArray, sizeof(ushort))) in SplitValueChainIntoWordsArray()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs465 …public static bool TryParseHexString<T>(string hexString, out T[] outArray, int elementSize, bool … in TryParseHexString() method in Antmicro.Renode.Utilities.Misc