Searched refs:mallinfo (Results 1 – 16 of 16) sorted by relevance
102 struct mallinfo { struct131 struct mallinfo mallinfo(void);
40 typedef struct mallinfo (*MallocMallinfo)();61 MallocMallinfo mallinfo; member
42 struct mallinfo scudo_mallinfo();62 struct mallinfo scudo_svelte_mallinfo();
61 static struct mallinfo LimitMallinfo();326 current_allocated = dispatch_table->mallinfo().uordblks; in LimitEnable()328 current_allocated = Malloc(mallinfo)().uordblks; in LimitEnable()344 static struct mallinfo LimitMallinfo() { in LimitMallinfo()347 return dispatch_table->mallinfo(); in LimitMallinfo()349 return Malloc(mallinfo)(); in LimitMallinfo()
88 extern "C" struct mallinfo mallinfo() { in mallinfo() function91 return dispatch_table->mallinfo(); in mallinfo()93 return Malloc(mallinfo)(); in mallinfo()346 Malloc(mallinfo),
34 struct mallinfo je_mallinfo();
181 Malloc(mallinfo),
146 if (!InitMallocFunction<MallocMallinfo>(impl_handler, &table->mallinfo, prefix, "mallinfo")) { in InitMallocFunctions()
67 struct mallinfo hooks_mallinfo();171 struct mallinfo hooks_mallinfo() { in hooks_mallinfo()172 return g_dispatch->mallinfo(); in hooks_mallinfo()
58 benchmark::DoNotOptimize(mallinfo().uordblks); in BM_mallinfo()
105 size_t mallinfo_bytes = mallinfo().uordblks; in TEST()
470 size_t mallinfo_before_allocated_bytes = mallinfo().uordblks; in TEST()472 size_t mallinfo_after_allocated_bytes = mallinfo().uordblks; in TEST()755 TEST(malloc, mallinfo) { in TEST() argument773 size_t allocated = mallinfo().uordblks; in TEST()776 size_t new_allocated = mallinfo().uordblks; in TEST()
186 struct mallinfo info = mallinfo(); in TEST_F()
269 #### mallinfo Benchmark270 This benchmark only verifies that mallinfo is still close to the performance278 Calls to mallinfo are used in ART so a new allocator is required to be283 mallinfo benchmark, it's not necessary for this to be better than the previous
623 mallinfo;