Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dobject.c970 … (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()
974 (float)server.cron_malloc_stats.process_rss / server.cron_malloc_stats.allocator_resident; in getMemoryOverheadData()
976 server.cron_malloc_stats.process_rss - server.cron_malloc_stats.allocator_resident; in getMemoryOverheadData()
1405 addReplyLongLong(c,server.cron_malloc_stats.allocator_resident); in memoryCommand()
H A Dserver.c1162 &server.cron_malloc_stats.allocator_resident); in serverCron()
1165 if (!server.cron_malloc_stats.allocator_resident) { in serverCron()
1170 … server.cron_malloc_stats.allocator_resident = server.cron_malloc_stats.process_rss - lua_memory; in serverCron()
1173 server.cron_malloc_stats.allocator_active = server.cron_malloc_stats.allocator_resident; in serverCron()
2124 server.cron_malloc_stats.allocator_resident = 0; in initServer()
3312 server.cron_malloc_stats.allocator_resident, in genRedisInfoString()
H A Dserver.h913 size_t allocator_resident; member