summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-01Simple arena implementation using singly linked listAryadev Chavali
Manages individual allocations via a bump allocator (region), with unfit allocations triggering a new region allocation that is added to a linked list. Any new region allocations will always be oversized for the initially requested size, to amortize the cost of future allocations.
2024-10-24VEC_MULT may be set as user, so have a #if guard.Aryadev Chavali
2024-10-24Use VEC_MULT in vec_ensure_remainingAryadev Chavali
2024-10-24Clean up macros in vec.hAryadev Chavali
2024-10-01Vector libraryAryadev Chavali