Home | History | Annotate | Download | only in src

Lines Matching full:mallinfo

151   All operations (except malloc_stats and mallinfo) have execution
273 execution noticeably. Calling malloc_stats or mallinfo with DEBUG
356 If defined, don't compile "mallinfo". This can be a simple way
361 The type of the fields in the mallinfo struct. This was originally
586 /* ------------------------ Mallinfo declarations ------------------------ */
590 This version of malloc supports the standard SVID/XPG mallinfo
593 /usr/include/malloc.h defining struct mallinfo. The main
594 declaration needed is the mallinfo struct that is returned (by-copy)
595 by mallinfo(). The malloinfo struct contains a bunch of fields that
597 are instead filled by mallinfo() with other numbers that might be of
602 mallinfo. If so, it is included; else a compliant version is
603 declared below. These must be precisely the same for mallinfo() to
605 systems with mallinfo, declares all fields as ints. But some others
617 struct mallinfo {
649 #define dlmallinfo mallinfo
763 value. Unlike mallinfo, this function returns only a precomputed
775 by malloc, realloc etc., is less than this value. Unlike mallinfo,
785 mallinfo()
806 struct mallinfo dlmallinfo(void);
988 More information can be obtained by calling mallinfo.
1102 mspace_mallinfo behaves as mallinfo, but reports properties of
1105 struct mallinfo mspace_mallinfo(mspace msp);
2821 static struct mallinfo internal_mallinfo(mstate m) {
2822 struct mallinfo nm = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
4378 struct mallinfo dlmallinfo(void) {
4813 struct mallinfo mspace_mallinfo(mspace msp) {
5038 * Add mallinfo, mallopt. Thanks to Raymond Nijssen