Frees aligned memory allocated by alignedMalloc or alignedRealloc. Functionally equivalent to Visual C++ _aligned_free. Do not mix allocations with different alignment.
Allocates an aligned memory chunk. Functionally equivalent to Visual C++ _aligned_malloc. Do not mix allocations with different alignment.
Reallocates an aligned memory chunk allocated by alignedMalloc or alignedRealloc. Functionally equivalent to Visual C++ _aligned_realloc. Do not mix allocations with different alignment.
Use throughout dplug:dsp to avoid reliance on GC. This works like alignedRealloc except with slices as input. You MUST use consistent alignement thoughout the lifetime of this buffer.
Growable array, points to a memory aligned location. This can also work as an output range.