Home
last modified time | relevance | path

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

/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() argument
471 outArray = new T[0]; in TryParseHexString()
474 outArray = new T[byteLength / elementSize]; in TryParseHexString()
479 Buffer.BlockCopy(byteArray, 0, outArray, 0, byteLength); in TryParseHexString()