Searched refs:alive_object_counter (Results 1 – 1 of 1) sorted by relevance
236 static std::atomic<std::int64_t> alive_object_counter; // initialized outside member297 static std::int32_t alive_objects() { return alive_object_counter.load(); } in alive_objects()300 void inc_alive_objects() { alive_object_counter.fetch_add(1); } in inc_alive_objects()301 void dec_alive_objects() { alive_object_counter.fetch_sub(1); } in dec_alive_objects()304 std::atomic<std::int64_t> MemoryChecker::alive_object_counter{0};