Home
last modified time | relevance | path

Searched defs:mallinfo (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/minilibc/include/
A Dmm.h189 struct mallinfo struct
191 int arena; /* This is the total size of memory allocated
193 int ordblks; /* This is the number of free (not in use) chunks */
194 int mxordblk; /* Size of the largest free (not in use) chunk */
195 int uordblks; /* This is the total size of memory occupied by
197 int fordblks; /* This is the total size of memory occupied
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_malloc.c675 struct mallinfo struct
677 MALLINFO_FIELD_TYPE arena; /* non-mmapped space allocated from system */
678 MALLINFO_FIELD_TYPE ordblks; /* number of free chunks */
679 MALLINFO_FIELD_TYPE smblks; /* always 0 */
680 MALLINFO_FIELD_TYPE hblks; /* always 0 */
681 MALLINFO_FIELD_TYPE hblkhd; /* space in mmapped regions */
682 MALLINFO_FIELD_TYPE usmblks; /* maximum total allocated space */
683 MALLINFO_FIELD_TYPE fsmblks; /* always 0 */
684 MALLINFO_FIELD_TYPE uordblks; /* total allocated space */
685 MALLINFO_FIELD_TYPE fordblks; /* total free space */
[all …]

Completed in 27 milliseconds