reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/asan/asan_memory_profile.cpp
   33   HeapProfile() { allocations_.reserve(1024); }
   51     Sort(allocations_.data(), allocations_.size(),
   51     Sort(allocations_.data(), allocations_.size(),
   65     for (uptr i = 0; i < Min(allocations_.size(), max_number_of_contexts);
   67       auto &a = allocations_[i];
   87     for (uptr i = 0; i < allocations_.size(); i++) {
   88       if (allocations_[i].id == id) {
   89         allocations_[i].total_size += size;
   90         allocations_[i].count++;
   94     allocations_.push_back({id, size, 1});