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