6 references to Size
Microsoft.Data.Analysis (6)
DataFrameBuffer.cs (2)
48_memory = new byte[Math.Max(capacity, MinCapacity) * Size]; 84var newCapacity = Math.Max(newLength * Size, doubledSize);
ReadOnlyDataFrameBuffer.cs (4)
37protected int Capacity => ReadOnlyBuffer.Length / Size; 39public static int MaxCapacity => ArrayUtility.ArrayMaxSize / Size; 51if ((long)length * Size > MaxCapacity) 55_readOnlyBuffer = new byte[length * Size];