Lines Matching refs:it
63 AllocationMap::iterator it = allocations_.find(Range{value, value + 1}); in WordContainsAllocationPtr() local
64 if (it != allocations_.end()) { in WordContainsAllocationPtr()
65 *range = it->first; in WordContainsAllocationPtr()
66 *info = &it->second; in WordContainsAllocationPtr()
106 for (auto it = roots_.begin(); it != roots_.end(); it++) { in DetectLeaks() local
107 RecurseRoot(*it); in DetectLeaks()
125 for (auto it = allocations_.begin(); it != allocations_.end(); it++) { in Leaked() local
126 if (!it->second.referenced_from_root) { in Leaked()
128 leak_bytes += it->first.end - it->first.begin; in Leaked()
133 for (auto it = allocations_.begin(); it != allocations_.end(); it++) { in Leaked() local
134 if (!it->second.referenced_from_root) { in Leaked()
136 leaked.push_back(it->first); in Leaked()