HomeSort by relevance Sort by last modified time
    Searched full:mallinfo_result (Results 1 - 1 of 1) sorted by null

  /external/valgrind/main/memcheck/tests/
sbfragment.c 14 struct mallinfo mallinfo_result; local
15 mallinfo_result = mallinfo();
22 printf("%10d int arena; /* non-mmapped space allocated from system */\n", mallinfo_result.arena);
23 printf("%10d int ordblks; /* number of free chunks */\n", mallinfo_result.ordblks);
24 printf("%10d int smblks; /* number of fastbin blocks */\n", mallinfo_result.smblks);
25 printf("%10d int hblks; /* number of mmapped regions */\n", mallinfo_result.hblks);
26 printf("%10d int hblkhd; /* space in mmapped regions */\n", mallinfo_result.hblkhd);
27 printf("%10d int usmblks; /* maximum total allocated space */\n", mallinfo_result.usmblks);
28 printf("%10d int fsmblks; /* space available in freed fastbin blocks */\n", mallinfo_result.fsmblks);
29 printf("%10d int uordblks; /* total allocated space */\n", mallinfo_result.uordblks)
82 struct mallinfo mallinfo_result; local
    [all...]

Completed in 71 milliseconds