Home | History | Annotate | Download | only in src

Lines Matching refs:pad

933   malloc_trim(size_t pad);
944 The `pad' argument to malloc_trim represents the amount of free
1118 int mspace_trim(mspace msp, size_t pad);
1640 /* pad request bytes into a usable size */
1644 /* pad request, checking for minimum (but not maximum) */
3593 static int sys_trim(mstate m, size_t pad) {
3595 if (pad < MAX_REQUEST && is_initialized(m)) {
3596 pad += TOP_FOOT_SIZE; /* ensure enough room for segment overhead */
3598 if (m->topsize > pad) {
3601 size_t extra = ((m->topsize - pad + (unit - SIZE_T_ONE)) / unit -
4360 int dlmalloc_trim(size_t pad) {
4363 result = sys_trim(gm, pad);
4765 int mspace_trim(mspace msp, size_t pad) {
4770 result = sys_trim(ms, pad);
5040 * Add `pad' argument to malloc_trim and top_pad mallopt parameter.