Home | History | Annotate | Download | only in upstream-dlmalloc

Lines Matching defs:mspace

190   are versions of malloc routines that take an "mspace" argument
196 static mspace mymspace = create_mspace(0,0); // for example
199 (Note: If you only need one instance of an mspace, you can instead
204 static __thread mspace tlms = 0;
211 Unless FOOTERS is defined, each mspace is completely independent.
215 indicating its originating mspace, and frees are directed to their
260 If true, only compile in mspace versions, not regular versions.
265 overridden on a per-mspace basis for mspace versions.) If set to a
1269 mspace is an opaque type representing an independent
1272 typedef void* mspace;
1285 DLMALLOC_EXPORT mspace create_mspace(size_t capacity, int locked);
1293 DLMALLOC_EXPORT size_t destroy_mspace(mspace msp);
1297 of a new mspace. Part (less than 128*sizeof(size_t) bytes) of this
1304 DLMALLOC_EXPORT mspace create_mspace_with_base(void* base, size_t capacity, int locked);
1309 others in this mspace. By default large chunks are not tracked,
1317 DLMALLOC_EXPORT int mspace_track_large_chunks(mspace msp, int enable);
1324 DLMALLOC_EXPORT void* mspace_malloc(mspace msp, size_t bytes);
1334 DLMALLOC_EXPORT void mspace_free(mspace msp, void* mem);
1345 DLMALLOC_EXPORT void* mspace_realloc(mspace msp, void* mem, size_t newsize);
1351 DLMALLOC_EXPORT void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size);
1357 DLMALLOC_EXPORT void* mspace_memalign(mspace msp, size_t alignment, size_t bytes);
1363 DLMALLOC_EXPORT void** mspace_independent_calloc(mspace msp, size_t n_elements,
1370 DLMALLOC_EXPORT void** mspace_independent_comalloc(mspace msp, size_t n_elements,
1377 DLMALLOC_EXPORT size_t mspace_footprint(mspace msp);
1383 DLMALLOC_EXPORT size_t mspace_max_footprint(mspace msp);
1391 DLMALLOC_EXPORT struct mallinfo mspace_mallinfo(mspace msp);
1403 DLMALLOC_EXPORT void mspace_malloc_stats(mspace msp);
1409 DLMALLOC_EXPORT int mspace_trim(mspace msp, size_t pad);
1778 one per-mspace lock.
1788 Per-mspace locks surround calls to malloc, free, etc.
2562 around every public call using this mspace.
2631 /* The global malloc_state used for all non-"mspace" calls */
3907 /* -------------------------- mspace management -------------------------- */
5446 mspace create_mspace(size_t capacity, int locked) {
5462 return (mspace)m;
5465 mspace create_mspace_with_base(void* base, size_t capacity, int locked) {
5476 return (mspace)m;
5479 int mspace_track_large_chunks(mspace msp, int enable) {
5496 size_t destroy_mspace(mspace msp) {
5520 mspace versions of routines are near-clones of the global
5524 void* mspace_malloc(mspace msp, size_t bytes) {
5638 void mspace_free(mspace msp, void* mem) {
5739 void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size) {
5759 void* mspace_realloc(mspace msp, void* oldmem, size_t bytes) {
5804 void* mspace_realloc_in_place(mspace msp, void* oldmem, size_t bytes) {
5836 void* mspace_memalign(mspace msp, size_t alignment, size_t bytes) {
5847 void** mspace_independent_calloc(mspace msp, size_t n_elements,
5858 void** mspace_independent_comalloc(mspace msp, size_t n_elements,
5868 size_t mspace_bulk_free(mspace msp, void* array[], size_t nelem) {
5873 void mspace_inspect_all(mspace msp,
5892 int mspace_trim(mspace msp, size_t pad) {
5908 void mspace_malloc_stats(mspace msp) {
5919 size_t mspace_footprint(mspace msp) {
5931 size_t mspace_max_footprint(mspace msp) {
5943 size_t mspace_footprint_limit(mspace msp) {
5956 size_t mspace_set_footprint_limit(mspace msp, size_t bytes) {
5975 struct mallinfo mspace_mallinfo(mspace msp) {