HomeSort by relevance Sort by last modified time
    Searched defs:allocations_ (Results 1 - 5 of 5) sorted by null

  /external/compiler-rt/lib/asan/
asan_memory_profile.cc 34 HeapProfile() : allocations_(1024) {}
39 for (uptr i = 0; i < allocations_.size(); i++) {
40 if (allocations_[i].id == id) {
41 allocations_[i].total_size += size;
42 allocations_[i].count++;
46 allocations_.push_back({id, size, 1});
50 InternalSort(&allocations_, allocations_.size(),
58 for (uptr i = 0; i < allocations_.size(); i++) {
59 auto &a = allocations_[i]
72 InternalMmapVector<AllocationSite> allocations_; member in class:__asan::HeapProfile
    [all...]
  /external/libchrome/base/trace_event/
heap_profiler_allocation_register.h 347 AllocationMap allocations_; member in class:base::trace_event::AllocationRegister
  /external/v8/src/profiler/
sampling-heap-profiler.h 109 std::map<size_t, unsigned int> allocations_; member in class:v8::internal::SamplingHeapProfiler::AllocationNode
  /external/webrtc/webrtc/p2p/base/
turnserver.h 175 const AllocationMap& allocations() const { return allocations_; }
271 AllocationMap allocations_; member in class:cricket::TurnServer
  /external/protobuf/src/google/protobuf/
descriptor.cc 518 vector<void*> allocations_; // All other memory allocated in the pool. member in class:google::protobuf::DescriptorPool::Tables
529 allocations_before_checkpoint(tables->allocations_.size()),
654 // messages may refer to objects in allocations_.
656 for (int i = 0; i < allocations_.size(); i++) {
657 operator delete(allocations_[i]);
753 i < allocations_.size();
755 operator delete(allocations_[i]);
761 allocations_.resize(checkpoint.allocations_before_checkpoint);
    [all...]

Completed in 6337 milliseconds