Searched refs:mallinfo (Results 1 - 11 of 11) sorted by relevance

/freebsd-11.0-release/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.h125 /* SVID2/XPG mallinfo structure */
127 struct mallinfo { struct
140 /* Returns a copy of the updated current mallinfo. */
141 extern struct mallinfo mallinfo __MALLOC_P ((void));
H A Dmalloc.c84 mallinfo()
295 noticeably. Calling malloc_stats or mallinfo with MALLOC_DEBUG set
483 #define public_mALLINFo mallinfo
769 This version of malloc supports the standard SVID/XPG mallinfo
772 a /usr/include/malloc.h defining struct mallinfo. (If you'd like to
777 The main declaration needed is the mallinfo struct that is returned
778 (by-copy) by mallinfo(). The SVID/XPG malloinfo struct contains a
780 malloc. These fields are are instead filled by mallinfo() with
785 mallinfo. If so, it is included; else an SVID2/XPG2 compliant
787 mallinfo() t
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc106 // man mallinfo says the fields are "long", but the implementation uses int.
107 // It doesn't matter much -- we just need to make sure that the libc's mallinfo
113 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
159 fake_mallinfo (*mallinfo)(void);
174 WRAP(calloc), WRAP(free), WRAP(mallinfo),
/freebsd-11.0-release/contrib/llvm/lib/Support/Unix/
H A DProcess.inc97 struct mallinfo mi;
98 mi = ::mallinfo();
112 // the value returned by mallinfo in the arena field.
/freebsd-11.0-release/contrib/gcc/
H A Dsys-types.h71 struct mallinfo { int i; }; struct
H A Dsys-protos.h682 extern struct mallinfo mallinfo(void);
/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cc124 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
276 INTERCEPT_FUNCTION(mallinfo);
/freebsd-11.0-release/contrib/tcsh/
H A Dtc.alloc.c635 struct mallinfo mi;
637 mi = mallinfo();
/freebsd-11.0-release/contrib/amd/libamu/
H A Dxutil.c264 struct mallinfo mi = mallinfo();
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc251 INTERCEPTOR(void, mallinfo, __sanitizer_mallinfo *sret) {
260 #define MSAN_MAYBE_INTERCEPT_MALLINFO INTERCEPT_FUNCTION(mallinfo)
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.cc1182 COMPILER_CHECK(sizeof(__sanitizer_mallinfo) == sizeof(struct mallinfo));

Completed in 283 milliseconds