Lines Matching refs:malloc_trim
55 malloc_trim(size_t pad);
603 int keepcost; /* top-most, releasable (via malloc_trim) space */
629 to keep before releasing via malloc_trim in free().
689 * When malloc_trim is called automatically from free(),
732 menas that even trimming via malloc_trim would not release them.
908 int malloc_trim(size_t);
922 int malloc_trim();
1924 Main interface to sbrk (but see also malloc_trim).
2352 topmost memory exceeds the trim threshold, malloc_trim is
2414 malloc_trim(top_pad);
2930 The `pad' argument to malloc_trim represents the amount of free
2943 int malloc_trim(size_t pad)
2945 int malloc_trim(pad) size_t pad;
3084 current if malloc_trim and/or munmap got called), the maximum
3206 * Add `pad' argument to malloc_trim and top_pad mallopt parameter.
3229 * Added malloc_trim, with help from Wolfram Gloger