custom-allocator
There are 17 repositories under custom-allocator topic.
mtrebi/memory-allocators
Custom memory allocators in C++ to improve the performance of dynamic memory allocation
biojppm/rapidyaml
Rapid YAML - a library to parse and emit YAML, and do it fast.
crazybie/linear_ac
Speed up the memory allocation and improve the garbage collection performance.
Kashio/A5
C++ Custom memory allocators
pavlosdais/Memory-Allocators
A set of custom memory allocators
SkyEng1neering/dalloc
This is the custom implementation of function malloc for embedded systems, that defragmentate memory after using it. Good solution when you need to allocate memory dynamically, but memory fragmentation is the problem.
a-p-jo/allocator
Customisable, thread-safe C11 memory allocator based off the K&R "storage allocator"
omidshahbazi/GameEngine
An experimental game-engine
VladimirBalun/Allocators
🎓 Implementation different basic allocators for manual memory management in C language. You can use it like a library for your goals.
SkyEng1neering/ustring
This is the magic implementation of dynamic string. Based on dalloc allocator, that solves memory fragmentation problem. So you can use it in your embedded project and not to be afraid of program crash by reason of memory fragmentation.
alinaiil/ITMO-programming-1course
Programming, IS ITMO, 1st and 2nd semester (C, C++)
ArtDu/OOP
Object-oriented programming
SkyEng1neering/uvector
This is the magic implementation of dynamic array. Based on dalloc allocator, that solves memory fragmentation problem. So you can use it in your embedded project and not to be afraid of program crash by reason of memory fragmentation.
Sopiro/Salloc
Collection of specialized memory allocators
SkyEng1neering/constchar_tuple
This is the container for char strings. Based on dalloc allocator, that solves memory fragmentation problem. So you can use it in your embedded project and not to be afraid of program crash by reason of memory fragmentation.
ardaku/one_alloc
A custom allocator that allows a singular allocation of a specific size known ahead of time.
madsmtm/linear-malloc
An ultra simple single-threaded linear allocator