├── LICENSE ├── Makefile ├── README.md ├── lfpAlloc ├── Allocator.hpp ├── ChunkList.hpp ├── Pool.hpp ├── PoolDispatcher.hpp └── Utils.hpp └── tests ├── allocatorTest.cpp ├── dispatcherTest.cpp ├── mainTest.cpp ├── poolTest.cpp └── profile.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/README.md -------------------------------------------------------------------------------- /lfpAlloc/Allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/lfpAlloc/Allocator.hpp -------------------------------------------------------------------------------- /lfpAlloc/ChunkList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/lfpAlloc/ChunkList.hpp -------------------------------------------------------------------------------- /lfpAlloc/Pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/lfpAlloc/Pool.hpp -------------------------------------------------------------------------------- /lfpAlloc/PoolDispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/lfpAlloc/PoolDispatcher.hpp -------------------------------------------------------------------------------- /lfpAlloc/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/lfpAlloc/Utils.hpp -------------------------------------------------------------------------------- /tests/allocatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/tests/allocatorTest.cpp -------------------------------------------------------------------------------- /tests/dispatcherTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/tests/dispatcherTest.cpp -------------------------------------------------------------------------------- /tests/mainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/tests/mainTest.cpp -------------------------------------------------------------------------------- /tests/poolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/tests/poolTest.cpp -------------------------------------------------------------------------------- /tests/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALSchwalm/lfpAlloc/HEAD/tests/profile.cpp --------------------------------------------------------------------------------