Lines Matching refs:mspace

1276 typedef void* mspace;  typedef
1289 DLMALLOC_EXPORT mspace create_mspace(size_t capacity, int locked);
1297 DLMALLOC_EXPORT size_t destroy_mspace(mspace msp);
1308 DLMALLOC_EXPORT mspace create_mspace_with_base(void* base, size_t capacity, int locked);
1321 DLMALLOC_EXPORT int mspace_track_large_chunks(mspace msp, int enable);
1328 DLMALLOC_EXPORT void* mspace_malloc(mspace msp, size_t bytes);
1338 DLMALLOC_EXPORT void mspace_free(mspace msp, void* mem);
1349 DLMALLOC_EXPORT void* mspace_realloc(mspace msp, void* mem, size_t newsize);
1355 DLMALLOC_EXPORT void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size);
1361 DLMALLOC_EXPORT void* mspace_memalign(mspace msp, size_t alignment, size_t bytes);
1367 DLMALLOC_EXPORT void** mspace_independent_calloc(mspace msp, size_t n_elements,
1374 DLMALLOC_EXPORT void** mspace_independent_comalloc(mspace msp, size_t n_elements,
1381 DLMALLOC_EXPORT size_t mspace_footprint(mspace msp);
1387 DLMALLOC_EXPORT size_t mspace_max_footprint(mspace msp);
1395 DLMALLOC_EXPORT struct mallinfo mspace_mallinfo(mspace msp);
1407 DLMALLOC_EXPORT void mspace_malloc_stats(mspace msp);
1413 DLMALLOC_EXPORT int mspace_trim(mspace msp, size_t pad);
5457 mspace create_mspace(size_t capacity, int locked) { in create_mspace()
5473 return (mspace)m; in create_mspace()
5476 mspace create_mspace_with_base(void* base, size_t capacity, int locked) { in create_mspace_with_base()
5487 return (mspace)m; in create_mspace_with_base()
5490 int mspace_track_large_chunks(mspace msp, int enable) { in mspace_track_large_chunks()
5507 size_t destroy_mspace(mspace msp) { in destroy_mspace()
5535 void* mspace_malloc(mspace msp, size_t bytes) { in mspace_malloc()
5649 void mspace_free(mspace msp, void* mem) { in mspace_free()
5750 void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size) { in mspace_calloc()
5770 void* mspace_realloc(mspace msp, void* oldmem, size_t bytes) { in mspace_realloc()
5815 void* mspace_realloc_in_place(mspace msp, void* oldmem, size_t bytes) { in mspace_realloc_in_place()
5847 void* mspace_memalign(mspace msp, size_t alignment, size_t bytes) { in mspace_memalign()
5858 void** mspace_independent_calloc(mspace msp, size_t n_elements, in mspace_independent_calloc()
5869 void** mspace_independent_comalloc(mspace msp, size_t n_elements, in mspace_independent_comalloc()
5879 size_t mspace_bulk_free(mspace msp, void* array[], size_t nelem) { in mspace_bulk_free()
5884 void mspace_inspect_all(mspace msp, in mspace_inspect_all()
5903 int mspace_trim(mspace msp, size_t pad) { in mspace_trim()
5919 void mspace_malloc_stats(mspace msp) { in mspace_malloc_stats()
5930 size_t mspace_footprint(mspace msp) { in mspace_footprint()
5942 size_t mspace_max_footprint(mspace msp) { in mspace_max_footprint()
5954 size_t mspace_footprint_limit(mspace msp) { in mspace_footprint_limit()
5967 size_t mspace_set_footprint_limit(mspace msp, size_t bytes) { in mspace_set_footprint_limit()
5986 struct mallinfo mspace_mallinfo(mspace msp) { in mspace_mallinfo()