Home | History | Annotate | Download | only in common

Lines Matching defs:merged

36     UnreachableMemoryInfo merged;
38 merged.allocation_bytes = 0;
39 merged.leak_bytes = 0;
40 merged.num_allocations = 0;
41 merged.num_leaks = 0;
45 merged.allocation_bytes = max(merged.allocation_bytes, info.allocation_bytes);
46 merged.num_allocations = max(merged.num_allocations, info.num_allocations);
49 merged.leaks.push_back(leak);
50 merged.num_leaks++;
51 merged.leak_bytes += leak.size;
58 if (merged.num_leaks) {
60 if (!merged.leaks[0].backtrace.num_frames) {
64 cout << merged.ToString(false);