Lines Matching defs:mallinfo
163 All operations (except malloc_stats and mallinfo) have execution
335 execution noticeably. Calling malloc_stats or mallinfo with DEBUG
422 If defined, don't compile "mallinfo". This can be a simple way
427 The type of the fields in the mallinfo struct. This was originally
729 /* ------------------------ Mallinfo declarations ------------------------ */
733 This version of malloc supports the standard SVID/XPG mallinfo
736 /usr/include/malloc.h defining struct mallinfo. The main
737 declaration needed is the mallinfo struct that is returned (by-copy)
738 by mallinfo(). The malloinfo struct contains a bunch of fields that
740 are instead filled by mallinfo() with other numbers that might be of
745 mallinfo. If so, it is included; else a compliant version is
746 declared below. These must be precisely the same for mallinfo() to
748 systems with mallinfo, declares all fields as ints. But some others
760 /* HP-UX (and others?) redefines mallinfo unless _STRUCT_MALLINFO is defined */
763 struct mallinfo {
825 #define dlmallinfo mallinfo
970 value. Unlike mallinfo, this function returns only a precomputed
982 by malloc, realloc etc., is less than this value. Unlike mallinfo,
1051 mallinfo()
1072 DLMALLOC_EXPORT struct mallinfo dlmallinfo(void);
1242 More information can be obtained by calling mallinfo.
1388 mspace_mallinfo behaves as mallinfo, but reports properties of
1391 DLMALLOC_EXPORT struct mallinfo mspace_mallinfo(mspace msp);
3501 static struct mallinfo internal_mallinfo(mstate m) {
3502 struct mallinfo nm = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
5400 struct mallinfo dlmallinfo(void) {
5984 struct mallinfo mspace_mallinfo(mspace msp) {
6257 * Add mallinfo, mallopt. Thanks to Raymond Nijssen