Lines Matching refs:mallinfo
64 mallinfo()
177 that declares struct mallinfo. It is not at all necessary to
276 noticeably. Calling malloc_stats or mallinfo with DEBUG set will
562 This version of malloc supports the standard SVID/XPG mallinfo
566 defining struct mallinfo. (If you'd like to install such a thing
571 The main declaration needed is the mallinfo struct that is returned
572 (by-copy) by mallinfo(). The SVID/XPG malloinfo struct contains a
575 mallinfo() with other numbers that might possibly be of interest.
579 mallinfo. If so, it is included; else an SVID2/XPG2 compliant
581 mallinfo() to work.
591 /* SVID2/XPG mallinfo structure */
593 struct mallinfo {
867 #pragma weak mallinfo = __libc_mallinfo
890 #define mALLINFo mallinfo
912 struct mallinfo mALLINFo(void);
926 struct mallinfo mALLINFo();
1563 /* internal working copy of mallinfo */
1564 static struct mallinfo current_mallinfo = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
3036 /* Utility to update current_mallinfo for malloc_stats and mallinfo() */
3109 mallinfo returns a copy of updated current mallinfo.
3112 struct mallinfo mALLINFo()
3204 * Add mallinfo, mallopt. Thanks to Raymond Nijssen