├── !GenCHM.bat ├── !MakeMSVCProjs.bat ├── ._build ├── .be ├── 98b62f1e-1e32-4e12-9465-65b08cac9ae6 │ ├── bugs │ │ ├── 03e130dc-cc26-43eb-8b64-7df2e89ca2a6 │ │ │ ├── comments │ │ │ │ └── a5ce6ff1-1d16-4530-97b0-22842fd0e9c6 │ │ │ │ │ ├── body │ │ │ │ │ └── values │ │ │ └── values │ │ └── addacd35-7038-44fe-917b-9b3c56bc160e │ │ │ ├── comments │ │ │ └── e71bb2a9-ea4e-4169-a56f-56c481c9ac29 │ │ │ │ ├── body │ │ │ │ └── values │ │ │ └── values │ └── settings └── version ├── .gitignore ├── .gitmodules ├── .travis.yml ├── BEBugsAsHTML ├── bugs │ ├── 03e130dc-cc26-43eb-8b64-7df2e89ca2a6 │ │ └── index.html │ └── addacd35-7038-44fe-917b-9b3c56bc160e │ │ └── index.html ├── index.html ├── index_by_target.html ├── index_inactive.html └── style.css ├── Benchmarks.xlsx ├── Benchmarks_old.xls ├── Doxyfile ├── License.txt ├── Makefile ├── Readme.html ├── SConscript ├── SConstruct ├── ScalingTestResults.xlsx ├── doxygen.css ├── embedded_printf.c ├── embedded_printf.h ├── issue15.cpp ├── issue8.cpp ├── make_pgos.c ├── malloc.c.h ├── nedalloc.chm ├── nedmalloc.c ├── nedmalloc.h ├── nedmalloc.xcodeproj ├── ned.mode1v3 ├── ned.pbxuser └── project.pbxproj ├── nedmalloc_dll.rc ├── resource.h ├── scalingtest.cpp ├── test.c ├── test.cpp ├── unittests.cpp ├── unittests.vcproj ├── unsupported └── nedmalloc_loader.c ├── usermodepageallocator.c ├── usermodepageallocatortest.cpp ├── valgrind32.supp ├── winpatcher.c └── winpatcher_errorh.h /!GenCHM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/!GenCHM.bat -------------------------------------------------------------------------------- /!MakeMSVCProjs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/!MakeMSVCProjs.bat -------------------------------------------------------------------------------- /._build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/._build -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/comments/a5ce6ff1-1d16-4530-97b0-22842fd0e9c6/body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/comments/a5ce6ff1-1d16-4530-97b0-22842fd0e9c6/body -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/comments/a5ce6ff1-1d16-4530-97b0-22842fd0e9c6/values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/comments/a5ce6ff1-1d16-4530-97b0-22842fd0e9c6/values -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/values -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/comments/e71bb2a9-ea4e-4169-a56f-56c481c9ac29/body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/comments/e71bb2a9-ea4e-4169-a56f-56c481c9ac29/body -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/comments/e71bb2a9-ea4e-4169-a56f-56c481c9ac29/values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/comments/e71bb2a9-ea4e-4169-a56f-56c481c9ac29/values -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/values: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/values -------------------------------------------------------------------------------- /.be/98b62f1e-1e32-4e12-9465-65b08cac9ae6/settings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.be/version: -------------------------------------------------------------------------------- 1 | Bugs Everywhere Directory v1.4 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/.travis.yml -------------------------------------------------------------------------------- /BEBugsAsHTML/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/bugs/03e130dc-cc26-43eb-8b64-7df2e89ca2a6/index.html -------------------------------------------------------------------------------- /BEBugsAsHTML/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/bugs/addacd35-7038-44fe-917b-9b3c56bc160e/index.html -------------------------------------------------------------------------------- /BEBugsAsHTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/index.html -------------------------------------------------------------------------------- /BEBugsAsHTML/index_by_target.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/index_by_target.html -------------------------------------------------------------------------------- /BEBugsAsHTML/index_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/index_inactive.html -------------------------------------------------------------------------------- /BEBugsAsHTML/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/BEBugsAsHTML/style.css -------------------------------------------------------------------------------- /Benchmarks.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/Benchmarks.xlsx -------------------------------------------------------------------------------- /Benchmarks_old.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/Benchmarks_old.xls -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/Doxyfile -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/Readme.html -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/SConscript -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/SConstruct -------------------------------------------------------------------------------- /ScalingTestResults.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/ScalingTestResults.xlsx -------------------------------------------------------------------------------- /doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/doxygen.css -------------------------------------------------------------------------------- /embedded_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/embedded_printf.c -------------------------------------------------------------------------------- /embedded_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/embedded_printf.h -------------------------------------------------------------------------------- /issue15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/issue15.cpp -------------------------------------------------------------------------------- /issue8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/issue8.cpp -------------------------------------------------------------------------------- /make_pgos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/make_pgos.c -------------------------------------------------------------------------------- /malloc.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/malloc.c.h -------------------------------------------------------------------------------- /nedalloc.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedalloc.chm -------------------------------------------------------------------------------- /nedmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc.c -------------------------------------------------------------------------------- /nedmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc.h -------------------------------------------------------------------------------- /nedmalloc.xcodeproj/ned.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc.xcodeproj/ned.mode1v3 -------------------------------------------------------------------------------- /nedmalloc.xcodeproj/ned.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc.xcodeproj/ned.pbxuser -------------------------------------------------------------------------------- /nedmalloc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /nedmalloc_dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/nedmalloc_dll.rc -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/resource.h -------------------------------------------------------------------------------- /scalingtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/scalingtest.cpp -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/test.c -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/test.cpp -------------------------------------------------------------------------------- /unittests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/unittests.cpp -------------------------------------------------------------------------------- /unittests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/unittests.vcproj -------------------------------------------------------------------------------- /unsupported/nedmalloc_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/unsupported/nedmalloc_loader.c -------------------------------------------------------------------------------- /usermodepageallocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/usermodepageallocator.c -------------------------------------------------------------------------------- /usermodepageallocatortest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/usermodepageallocatortest.cpp -------------------------------------------------------------------------------- /valgrind32.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/valgrind32.supp -------------------------------------------------------------------------------- /winpatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/winpatcher.c -------------------------------------------------------------------------------- /winpatcher_errorh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned14/nedmalloc/HEAD/winpatcher_errorh.h --------------------------------------------------------------------------------