Lines Matching refs:array
243 public static void ByteArrayWrite(long offset, uint value, byte[] array) in ByteArrayWrite() argument
249 array[index + i] = bytes[i]; in ByteArrayWrite()
253 public static uint ByteArrayRead(long offset, byte[] array) in ByteArrayRead() argument
259 bytes[i] = array[index + i]; in ByteArrayRead()
1490 public static void SetBytesFromValue(this byte[] array, uint value, int startIndex) in SetBytesFromValue() argument
1494 array[startIndex++] = b; in SetBytesFromValue()
1753 public static void Fill<T>(this T[] array, T value, int startIndex = 0, int? count = null) in Fill() argument
1755 if(startIndex >= array.Length || startIndex < 0) in Fill()
1759 count = count ?? array.Length - startIndex; in Fill()
1760 if(startIndex + count.Value > array.Length) in Fill()
1766 array[startIndex + i] = value; in Fill()
1770 public static void Fill<T>(this T[] array, T value, int startIndex = 0, int? count = null) in Fill() argument
1772 Array.Fill(array, value, startIndex, count ?? array.Length - startIndex); in Fill()