Apache.Arrow.Memory.AlignedNative
namespace Apache.Arrow.Memory
{
internal static class AlignedNative
{
public unsafe static void* AlignedAlloc(int size, int alignment, out int offset);
public unsafe static void AlignedFree(void* ptr);
public unsafe static void* AlignedRealloc(void* ptr, int newSize, int alignment, int oldSize, ref int offset);
}
}