Home
last modified time | relevance | path

Searched refs:allocator_active (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dobject.c966 … (float)server.cron_malloc_stats.allocator_active / server.cron_malloc_stats.allocator_allocated; in getMemoryOverheadData()
968 server.cron_malloc_stats.allocator_active - server.cron_malloc_stats.allocator_allocated; in getMemoryOverheadData()
970 … (float)server.cron_malloc_stats.allocator_resident / server.cron_malloc_stats.allocator_active; in getMemoryOverheadData()
972 server.cron_malloc_stats.allocator_resident - server.cron_malloc_stats.allocator_active; in getMemoryOverheadData()
1402 addReplyLongLong(c,server.cron_malloc_stats.allocator_active); in memoryCommand()
H A Dserver.c1161 &server.cron_malloc_stats.allocator_active, in serverCron()
1172 if (!server.cron_malloc_stats.allocator_active) in serverCron()
1173 server.cron_malloc_stats.allocator_active = server.cron_malloc_stats.allocator_resident; in serverCron()
2123 server.cron_malloc_stats.allocator_active = 0; in initServer()
3311 server.cron_malloc_stats.allocator_active, in genRedisInfoString()
H A Dserver.h912 size_t allocator_active; member