Home | History | Annotate | Download | only in dlmalloc

Lines Matching refs:n_elements

126   calloc(size_t n_elements, size_t element_size);
127 Returns a pointer to n_elements * element_size bytes, with all locations
333 independent_calloc(size_t n_elements, size_t element_size, void* chunks[]);
336 single cleared space, it returns an array of pointers to n_elements
348 n_elements in length. It is filled in with the pointers to the
352 null if the allocation failed. If n_elements is zero and "chunks"
384 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
386 independent_comalloc allocates, all at once, a set of n_elements
397 must be of at least n_elements in length. It is filled in with the
401 null if the allocation failed. If n_elements is zero and chunks is
432 larger values of n_elements. For small values, you probably won't
442 bulk_free(void* array[], size_t n_elements)
450 size_t dlbulk_free(void**, size_t n_elements);
595 void* mspace_calloc(mspace msp, size_t n_elements, size_t elem_size);
599 void** mspace_independent_calloc(mspace msp, size_t n_elements,
601 void** mspace_independent_comalloc(mspace msp, size_t n_elements,
603 size_t mspace_bulk_free(mspace msp, void**, size_t n_elements);