asmjit::Arena Class Reference [¶]

Arena allocator is an incremental memory allocator that allocates memory by simply incrementing a pointer. It allocates blocks of memory by using C's malloc()
, but divides these blocks into smaller segments requested by calling Arena::alloc()
and friends.