Home
last modified time | relevance | path

Searched refs:total_size (Results 1 – 2 of 2) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dnano-mallinfo.c37 size_t total_size; in mallinfo() local
43 if (__malloc_sbrk_start == NULL) total_size = 0; in mallinfo()
48 total_size = (size_t)-1; in mallinfo()
50 total_size = (size_t) (sbrk_now - __malloc_sbrk_start); in mallinfo()
59 current_mallinfo.arena = total_size; in mallinfo()
61 current_mallinfo.uordblks = total_size - free_size; in mallinfo()
/picolibc-latest/newlib/libc/machine/xstormy16/
Dtiny-malloc.c527 size_t total_size; in mallinfo() local
551 total_size = (char *)__malloc_end - (char *)&__malloc_start; in mallinfo()
553 total_size = (char *)&__malloc_start - (char *)__malloc_end; in mallinfo()
560 r.arena = total_size; in mallinfo()
562 r.uordblks = total_size - free_size; in mallinfo()