Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1540 public static void FillByteArrayWithArray(byte[] destinationArray, byte[] sourceArray) in FillByteArrayWithArray() argument
1543 var dstLength = destinationArray.Length; in FillByteArrayWithArray()
1546 Buffer.BlockCopy(sourceArray, 0, destinationArray, 0, dstLength); in FillByteArrayWithArray()
1553 Buffer.BlockCopy(sourceArray, 0, destinationArray, currentIndex, srcLength); in FillByteArrayWithArray()
1557 Buffer.BlockCopy(sourceArray, 0, destinationArray, currentIndex, remindingElements); in FillByteArrayWithArray()