├── .gitignore ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.in ├── README ├── autogen.sh ├── bin ├── jemalloc.sh.in └── pprof ├── config.guess ├── config.stamp.in ├── config.sub ├── configure.ac ├── coverage.sh ├── doc ├── html.xsl.in ├── jemalloc.xml.in ├── manpages.xsl.in └── stylesheet.xsl ├── include ├── jemalloc │ ├── internal │ │ ├── arena.h │ │ ├── atomic.h │ │ ├── base.h │ │ ├── bitmap.h │ │ ├── chunk.h │ │ ├── chunk_dss.h │ │ ├── chunk_mmap.h │ │ ├── ckh.h │ │ ├── ctl.h │ │ ├── extent.h │ │ ├── hash.h │ │ ├── huge.h │ │ ├── jemalloc_internal.h.in │ │ ├── jemalloc_internal_defs.h.in │ │ ├── jemalloc_internal_macros.h │ │ ├── mb.h │ │ ├── mutex.h │ │ ├── private_namespace.sh │ │ ├── private_symbols.txt │ │ ├── private_unnamespace.sh │ │ ├── prng.h │ │ ├── prof.h │ │ ├── public_namespace.sh │ │ ├── public_unnamespace.sh │ │ ├── ql.h │ │ ├── qr.h │ │ ├── quarantine.h │ │ ├── rb.h │ │ ├── rtree.h │ │ ├── size_classes.sh │ │ ├── stats.h │ │ ├── tcache.h │ │ ├── tsd.h │ │ └── util.h │ ├── jemalloc.sh │ ├── jemalloc_defs.h.in │ ├── jemalloc_macros.h.in │ ├── jemalloc_mangle.sh │ ├── jemalloc_protos.h.in │ └── jemalloc_rename.sh └── msvc_compat │ ├── inttypes.h │ ├── stdbool.h │ ├── stdint.h │ └── strings.h ├── install-sh ├── jemalloc-3.5.1+mk3.spec ├── src ├── arena.c ├── atomic.c ├── base.c ├── bitmap.c ├── chunk.c ├── chunk_dss.c ├── chunk_mmap.c ├── ckh.c ├── ctl.c ├── extent.c ├── hash.c ├── huge.c ├── jemalloc.c ├── mb.c ├── mutex.c ├── prof.c ├── quarantine.c ├── rtree.c ├── stats.c ├── tcache.c ├── tsd.c ├── util.c └── zone.c └── test ├── include └── test │ ├── SFMT-alti.h │ ├── SFMT-params.h │ ├── SFMT-params11213.h │ ├── SFMT-params1279.h │ ├── SFMT-params132049.h │ ├── SFMT-params19937.h │ ├── SFMT-params216091.h │ ├── SFMT-params2281.h │ ├── SFMT-params4253.h │ ├── SFMT-params44497.h │ ├── SFMT-params607.h │ ├── SFMT-params86243.h │ ├── SFMT-sse2.h │ ├── SFMT.h │ ├── jemalloc_test.h.in │ ├── jemalloc_test_defs.h.in │ ├── math.h │ ├── mq.h │ ├── mtx.h │ ├── test.h │ ├── thd.h │ └── timer.h ├── integration ├── ALLOCM_ARENA.c ├── aligned_alloc.c ├── allocated.c ├── allocm.c ├── mallocx.c ├── mremap.c ├── posix_memalign.c ├── rallocm.c ├── rallocx.c ├── thread_arena.c ├── thread_tcache_enabled.c └── xallocx.c ├── src ├── SFMT.c ├── math.c ├── mtx.c ├── test.c ├── thd.c └── timer.c ├── stress └── microbench.c ├── test.sh.in └── unit ├── SFMT.c ├── bitmap.c ├── ckh.c ├── hash.c ├── junk.c ├── mallctl.c ├── math.c ├── mq.c ├── mtx.c ├── prof_accum.c ├── prof_accum.h ├── prof_accum_a.c ├── prof_accum_b.c ├── prof_gdump.c ├── prof_idump.c ├── ql.c ├── qr.c ├── quarantine.c ├── rb.c ├── rtree.c ├── stats.c ├── tsd.c ├── util.c └── zero.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/autogen.sh -------------------------------------------------------------------------------- /bin/jemalloc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/bin/jemalloc.sh.in -------------------------------------------------------------------------------- /bin/pprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/bin/pprof -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/config.guess -------------------------------------------------------------------------------- /config.stamp.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/config.sub -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/configure.ac -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/coverage.sh -------------------------------------------------------------------------------- /doc/html.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/doc/html.xsl.in -------------------------------------------------------------------------------- /doc/jemalloc.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/doc/jemalloc.xml.in -------------------------------------------------------------------------------- /doc/manpages.xsl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/doc/manpages.xsl.in -------------------------------------------------------------------------------- /doc/stylesheet.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/doc/stylesheet.xsl -------------------------------------------------------------------------------- /include/jemalloc/internal/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/arena.h -------------------------------------------------------------------------------- /include/jemalloc/internal/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/atomic.h -------------------------------------------------------------------------------- /include/jemalloc/internal/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/base.h -------------------------------------------------------------------------------- /include/jemalloc/internal/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/bitmap.h -------------------------------------------------------------------------------- /include/jemalloc/internal/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/chunk.h -------------------------------------------------------------------------------- /include/jemalloc/internal/chunk_dss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/chunk_dss.h -------------------------------------------------------------------------------- /include/jemalloc/internal/chunk_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/chunk_mmap.h -------------------------------------------------------------------------------- /include/jemalloc/internal/ckh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/ckh.h -------------------------------------------------------------------------------- /include/jemalloc/internal/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/ctl.h -------------------------------------------------------------------------------- /include/jemalloc/internal/extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/extent.h -------------------------------------------------------------------------------- /include/jemalloc/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/hash.h -------------------------------------------------------------------------------- /include/jemalloc/internal/huge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/huge.h -------------------------------------------------------------------------------- /include/jemalloc/internal/jemalloc_internal.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/jemalloc_internal.h.in -------------------------------------------------------------------------------- /include/jemalloc/internal/jemalloc_internal_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/jemalloc_internal_defs.h.in -------------------------------------------------------------------------------- /include/jemalloc/internal/jemalloc_internal_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/jemalloc_internal_macros.h -------------------------------------------------------------------------------- /include/jemalloc/internal/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/mb.h -------------------------------------------------------------------------------- /include/jemalloc/internal/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/mutex.h -------------------------------------------------------------------------------- /include/jemalloc/internal/private_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/private_namespace.sh -------------------------------------------------------------------------------- /include/jemalloc/internal/private_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/private_symbols.txt -------------------------------------------------------------------------------- /include/jemalloc/internal/private_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/private_unnamespace.sh -------------------------------------------------------------------------------- /include/jemalloc/internal/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/prng.h -------------------------------------------------------------------------------- /include/jemalloc/internal/prof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/prof.h -------------------------------------------------------------------------------- /include/jemalloc/internal/public_namespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/public_namespace.sh -------------------------------------------------------------------------------- /include/jemalloc/internal/public_unnamespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/public_unnamespace.sh -------------------------------------------------------------------------------- /include/jemalloc/internal/ql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/ql.h -------------------------------------------------------------------------------- /include/jemalloc/internal/qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/qr.h -------------------------------------------------------------------------------- /include/jemalloc/internal/quarantine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/quarantine.h -------------------------------------------------------------------------------- /include/jemalloc/internal/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/rb.h -------------------------------------------------------------------------------- /include/jemalloc/internal/rtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/rtree.h -------------------------------------------------------------------------------- /include/jemalloc/internal/size_classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/size_classes.sh -------------------------------------------------------------------------------- /include/jemalloc/internal/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/stats.h -------------------------------------------------------------------------------- /include/jemalloc/internal/tcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/tcache.h -------------------------------------------------------------------------------- /include/jemalloc/internal/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/tsd.h -------------------------------------------------------------------------------- /include/jemalloc/internal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/internal/util.h -------------------------------------------------------------------------------- /include/jemalloc/jemalloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc.sh -------------------------------------------------------------------------------- /include/jemalloc/jemalloc_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc_defs.h.in -------------------------------------------------------------------------------- /include/jemalloc/jemalloc_macros.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc_macros.h.in -------------------------------------------------------------------------------- /include/jemalloc/jemalloc_mangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc_mangle.sh -------------------------------------------------------------------------------- /include/jemalloc/jemalloc_protos.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc_protos.h.in -------------------------------------------------------------------------------- /include/jemalloc/jemalloc_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/jemalloc/jemalloc_rename.sh -------------------------------------------------------------------------------- /include/msvc_compat/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/msvc_compat/inttypes.h -------------------------------------------------------------------------------- /include/msvc_compat/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/msvc_compat/stdbool.h -------------------------------------------------------------------------------- /include/msvc_compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/msvc_compat/stdint.h -------------------------------------------------------------------------------- /include/msvc_compat/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/include/msvc_compat/strings.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/install-sh -------------------------------------------------------------------------------- /jemalloc-3.5.1+mk3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/jemalloc-3.5.1+mk3.spec -------------------------------------------------------------------------------- /src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/arena.c -------------------------------------------------------------------------------- /src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/atomic.c -------------------------------------------------------------------------------- /src/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/base.c -------------------------------------------------------------------------------- /src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/bitmap.c -------------------------------------------------------------------------------- /src/chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/chunk.c -------------------------------------------------------------------------------- /src/chunk_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/chunk_dss.c -------------------------------------------------------------------------------- /src/chunk_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/chunk_mmap.c -------------------------------------------------------------------------------- /src/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/ckh.c -------------------------------------------------------------------------------- /src/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/ctl.c -------------------------------------------------------------------------------- /src/extent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/extent.c -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/huge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/huge.c -------------------------------------------------------------------------------- /src/jemalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/jemalloc.c -------------------------------------------------------------------------------- /src/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/mb.c -------------------------------------------------------------------------------- /src/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/mutex.c -------------------------------------------------------------------------------- /src/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/prof.c -------------------------------------------------------------------------------- /src/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/quarantine.c -------------------------------------------------------------------------------- /src/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/rtree.c -------------------------------------------------------------------------------- /src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/stats.c -------------------------------------------------------------------------------- /src/tcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/tcache.c -------------------------------------------------------------------------------- /src/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/tsd.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/util.c -------------------------------------------------------------------------------- /src/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/src/zone.c -------------------------------------------------------------------------------- /test/include/test/SFMT-alti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-alti.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params11213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params11213.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params1279.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params1279.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params132049.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params132049.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params19937.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params216091.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params216091.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params2281.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params2281.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params4253.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params4253.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params44497.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params44497.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params607.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params607.h -------------------------------------------------------------------------------- /test/include/test/SFMT-params86243.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-params86243.h -------------------------------------------------------------------------------- /test/include/test/SFMT-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT-sse2.h -------------------------------------------------------------------------------- /test/include/test/SFMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/SFMT.h -------------------------------------------------------------------------------- /test/include/test/jemalloc_test.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/jemalloc_test.h.in -------------------------------------------------------------------------------- /test/include/test/jemalloc_test_defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/jemalloc_test_defs.h.in -------------------------------------------------------------------------------- /test/include/test/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/math.h -------------------------------------------------------------------------------- /test/include/test/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/mq.h -------------------------------------------------------------------------------- /test/include/test/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/mtx.h -------------------------------------------------------------------------------- /test/include/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/test.h -------------------------------------------------------------------------------- /test/include/test/thd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/thd.h -------------------------------------------------------------------------------- /test/include/test/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/include/test/timer.h -------------------------------------------------------------------------------- /test/integration/ALLOCM_ARENA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/ALLOCM_ARENA.c -------------------------------------------------------------------------------- /test/integration/aligned_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/aligned_alloc.c -------------------------------------------------------------------------------- /test/integration/allocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/allocated.c -------------------------------------------------------------------------------- /test/integration/allocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/allocm.c -------------------------------------------------------------------------------- /test/integration/mallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/mallocx.c -------------------------------------------------------------------------------- /test/integration/mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/mremap.c -------------------------------------------------------------------------------- /test/integration/posix_memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/posix_memalign.c -------------------------------------------------------------------------------- /test/integration/rallocm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/rallocm.c -------------------------------------------------------------------------------- /test/integration/rallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/rallocx.c -------------------------------------------------------------------------------- /test/integration/thread_arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/thread_arena.c -------------------------------------------------------------------------------- /test/integration/thread_tcache_enabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/thread_tcache_enabled.c -------------------------------------------------------------------------------- /test/integration/xallocx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/integration/xallocx.c -------------------------------------------------------------------------------- /test/src/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/SFMT.c -------------------------------------------------------------------------------- /test/src/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/math.c -------------------------------------------------------------------------------- /test/src/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/mtx.c -------------------------------------------------------------------------------- /test/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/test.c -------------------------------------------------------------------------------- /test/src/thd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/thd.c -------------------------------------------------------------------------------- /test/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/src/timer.c -------------------------------------------------------------------------------- /test/stress/microbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/stress/microbench.c -------------------------------------------------------------------------------- /test/test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/test.sh.in -------------------------------------------------------------------------------- /test/unit/SFMT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/SFMT.c -------------------------------------------------------------------------------- /test/unit/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/bitmap.c -------------------------------------------------------------------------------- /test/unit/ckh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/ckh.c -------------------------------------------------------------------------------- /test/unit/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/hash.c -------------------------------------------------------------------------------- /test/unit/junk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/junk.c -------------------------------------------------------------------------------- /test/unit/mallctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/mallctl.c -------------------------------------------------------------------------------- /test/unit/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/math.c -------------------------------------------------------------------------------- /test/unit/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/mq.c -------------------------------------------------------------------------------- /test/unit/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/mtx.c -------------------------------------------------------------------------------- /test/unit/prof_accum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/prof_accum.c -------------------------------------------------------------------------------- /test/unit/prof_accum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/prof_accum.h -------------------------------------------------------------------------------- /test/unit/prof_accum_a.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(0) 4 | -------------------------------------------------------------------------------- /test/unit/prof_accum_b.c: -------------------------------------------------------------------------------- 1 | #include "prof_accum.h" 2 | 3 | alloc_n_gen(1) 4 | -------------------------------------------------------------------------------- /test/unit/prof_gdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/prof_gdump.c -------------------------------------------------------------------------------- /test/unit/prof_idump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/prof_idump.c -------------------------------------------------------------------------------- /test/unit/ql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/ql.c -------------------------------------------------------------------------------- /test/unit/qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/qr.c -------------------------------------------------------------------------------- /test/unit/quarantine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/quarantine.c -------------------------------------------------------------------------------- /test/unit/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/rb.c -------------------------------------------------------------------------------- /test/unit/rtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/rtree.c -------------------------------------------------------------------------------- /test/unit/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/stats.c -------------------------------------------------------------------------------- /test/unit/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/tsd.c -------------------------------------------------------------------------------- /test/unit/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/util.c -------------------------------------------------------------------------------- /test/unit/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/memkind/jemalloc/HEAD/test/unit/zero.c --------------------------------------------------------------------------------