/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.cc | 21 index_ = register_.allocations_.Next(index_ + 1); 79 : allocations_(allocation_capacity), backtraces_(backtrace_capacity) { 110 auto index_and_flag = allocations_.Insert(address, info); 114 auto& old_info = allocations_.Get(index_and_flag.first).second; 124 auto index = allocations_.Find(address); 129 const AllocationInfo& info = allocations_.Get(index).second; 131 allocations_.Remove(index); 136 auto index = allocations_.Find(address); 148 return ConstIterator(*this, allocations_.Next(0)); 159 allocations_.EstimateUsedMemory() [all...] |
heap_profiler_allocation_register.h | 368 AllocationMap allocations_; member in class:base::trace_event::internal::AllocationRegister
|
/system/core/libmemunreachable/ |
HeapWalker.cpp | 38 auto inserted = allocations_.insert(std::pair<Range, AllocationInfo>(range, AllocationInfo{})); 63 AllocationMap::iterator it = allocations_.find(Range{value, value + 1}); 64 if (it != allocations_.end()) { 97 return allocations_.size(); 125 for (auto it = allocations_.begin(); it != allocations_.end(); it++) { 133 for (auto it = allocations_.begin(); it != allocations_.end(); it++) {
|
HeapWalker.h | 51 allocations_(allocator), 95 AllocationMap allocations_; 123 for (auto& it : allocations_) {
|
/external/tensorflow/tensorflow/core/framework/ |
tracking_allocator.cc | 48 allocations_.emplace_back(allocated_bytes, Env::Default()->NowMicros()); 64 allocations_.emplace_back(allocated_bytes, Env::Default()->NowMicros()); 69 allocations_.emplace_back(num_bytes, Env::Default()->NowMicros()); 102 allocations_.emplace_back(-allocated_bytes, Env::Default()->NowMicros()); 179 allocations.swap(allocations_); 192 for (const AllocRecord& alloc : allocations_) {
|
tracking_allocator.h | 118 gtl::InlinedVector<AllocRecord, 4> allocations_ GUARDED_BY(mu_);
|
/external/v8/src/profiler/ |
sampling-heap-profiler.cc | 111 node->allocations_[size]++; 122 DCHECK(node->allocations_[sample->size] > 0); 123 node->allocations_[sample->size]--; 124 if (node->allocations_[sample->size] == 0) { 125 node->allocations_.erase(sample->size); 126 while (node->allocations_.empty() && node->children_.empty() && 221 allocations.reserve(node->allocations_.size()); 238 for (auto alloc : node->allocations_) {
|
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.cc | 127 for (AllocationMap::iterator it = allocations_.begin(); 128 it != allocations_.end(); ++it) { 431 AllocationMap::const_iterator it = allocations_.find(*conn); 432 return (it != allocations_.end()) ? it->second : NULL; 448 allocations_[*conn] = allocation; 513 AllocationMap::iterator it = allocations_.find(*(allocation->conn())); 514 if (it != allocations_.end()) 515 allocations_.erase(it);
|
turnserver.h | 175 const AllocationMap& allocations() const { return allocations_; } 271 AllocationMap allocations_; member in class:cricket::TurnServer
|
/external/tensorflow/tensorflow/core/common_runtime/ |
step_stats_collector.cc | 56 allocations_.push_back(std::make_pair(memory, tracking_allocator)); 60 for (auto& alloc : allocations_) { 68 allocations_.clear(); 300 for (const auto& alloc : stats->allocations_) {
|
step_stats_collector.h | 61 allocations_; member in class:tensorflow::NodeExecStatsWrapper
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
buffer_assignment.cc | 203 CHECK_LT(index, allocations_.size()); 204 return allocations_[index]; 317 BufferAllocation::Index index = allocations_.size(); 318 allocations_.emplace_back(index, size, is_thread_local, is_reusable, color); 319 BufferAllocation* allocation = &allocations_.back(); 357 std::partition(allocations_.begin(), allocations_.end(), 364 if (first_temp_it != allocations_.end()) { 365 for (auto it = first_temp_it; it != allocations_.end(); ++it) { 393 allocations_.erase(first_temp_it, allocations_.end()) [all...] |
buffer_assignment.h | 272 return allocations_; 425 std::vector<BufferAllocation> allocations_; member in class:xla::BufferAssignment
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
tfprof_node.h | 188 return allocations_; 218 for (const auto& r : allocations_) { 240 allocations_.clear(); 260 allocations_.push_back(r); 287 std::vector<AllocationRecord> allocations_; member in class:tensorflow::tfprof::ExecStep
|
tfprof_node.cc | 105 allocations_.push_back(alloc);
|
/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...] |