Searched refs:zmalloc_used (Results 1 – 3 of 3) sorted by relevance
955 size_t zmalloc_used = zmalloc_used_memory(); in getMemoryOverheadData() local958 mh->total_allocated = zmalloc_used; in getMemoryOverheadData()962 (float)server.cron_malloc_stats.process_rss / server.cron_malloc_stats.zmalloc_used; in getMemoryOverheadData()964 server.cron_malloc_stats.process_rss - server.cron_malloc_stats.zmalloc_used; in getMemoryOverheadData()1064 mh->dataset = zmalloc_used - mem_total; in getMemoryOverheadData()1065 mh->peak_perc = (float)zmalloc_used*100/mh->peak_allocated; in getMemoryOverheadData()1070 if (zmalloc_used > mh->startup_allocated) in getMemoryOverheadData()1071 net_usage = zmalloc_used - mh->startup_allocated; in getMemoryOverheadData()
1155 server.cron_malloc_stats.zmalloc_used = zmalloc_used_memory(); in serverCron()1175 server.cron_malloc_stats.allocator_allocated = server.cron_malloc_stats.zmalloc_used; in serverCron()2120 server.cron_malloc_stats.zmalloc_used = 0; in initServer()3235 size_t zmalloc_used = zmalloc_used_memory(); in genRedisInfoString() local3245 if (zmalloc_used > server.stat_peak_memory) in genRedisInfoString()3246 server.stat_peak_memory = zmalloc_used; in genRedisInfoString()3248 bytesToHuman(hmem,zmalloc_used); in genRedisInfoString()3299 zmalloc_used, in genRedisInfoString()
909 size_t zmalloc_used; member