realloc +base
Resize a memory area that was allocated with malloc or mallocBytes to the size needed to store values of type b. The returned pointer may refer to an entirely different memory area, but will be suitably aligned to hold values of type b. The contents of the referenced memory area will be the same as of the original pointer up to the minimum of the original size and the size of values of type b.
If the argument to realloc is nullPtr, realloc behaves like malloc.
Adjust the size of an array
Adjust the size of an array including an extra position for the end marker.
Resize a memory area that was allocated with malloc or mallocBytes to the given size. The returned pointer may refer to an entirely different memory area, but will be sufficiently aligned for any of the basic foreign types that fits into a memory block of the given size. The contents of the referenced memory area will be the same as of the original pointer up to the minimum of the original size and the given size.
If the pointer argument to reallocBytes is nullPtr, reallocBytes behaves like malloc. If the requested size is 0, reallocBytes behaves like free.
Adjust the storage area for an element in the pool to the given size of the required type.
Adjust the size of an array in the given pool.
Adjust the size of an array with an end marker in the given pool.
Adjust the storage area for an element in the pool to the given size.