├── LICENSE ├── README.txt └── src ├── allocator_tester.cpp ├── allocator_tester.h ├── iib_allocator.h ├── iibmalloc ├── iibmalloc.h ├── iibmalloc_common.h ├── iibmalloc_linux.cpp ├── iibmalloc_windows.cpp ├── page_allocator.h ├── page_allocator_linux.cpp └── page_allocator_windows.cpp ├── new_delete_allocator.h ├── selector.h ├── test_common.cpp ├── test_common.h └── void_allocator.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/README.txt -------------------------------------------------------------------------------- /src/allocator_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/allocator_tester.cpp -------------------------------------------------------------------------------- /src/allocator_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/allocator_tester.h -------------------------------------------------------------------------------- /src/iib_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iib_allocator.h -------------------------------------------------------------------------------- /src/iibmalloc/iibmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/iibmalloc.h -------------------------------------------------------------------------------- /src/iibmalloc/iibmalloc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/iibmalloc_common.h -------------------------------------------------------------------------------- /src/iibmalloc/iibmalloc_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/iibmalloc_linux.cpp -------------------------------------------------------------------------------- /src/iibmalloc/iibmalloc_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/iibmalloc_windows.cpp -------------------------------------------------------------------------------- /src/iibmalloc/page_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/page_allocator.h -------------------------------------------------------------------------------- /src/iibmalloc/page_allocator_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/page_allocator_linux.cpp -------------------------------------------------------------------------------- /src/iibmalloc/page_allocator_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/iibmalloc/page_allocator_windows.cpp -------------------------------------------------------------------------------- /src/new_delete_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/new_delete_allocator.h -------------------------------------------------------------------------------- /src/selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/selector.h -------------------------------------------------------------------------------- /src/test_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/test_common.cpp -------------------------------------------------------------------------------- /src/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/test_common.h -------------------------------------------------------------------------------- /src/void_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-dot-cpp/alloc-test/HEAD/src/void_allocator.h --------------------------------------------------------------------------------