Home
last modified time | relevance | path

Searched refs:allocations_ (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/compiler/
Dgreedy-allocator.h105 return allocations_[i]; in current_allocations()
109 return allocations_[i]; in current_allocations()
190 ZoneVector<CoalescedLiveRanges*> allocations_; variable
Dgreedy-allocator.cc79 allocations_(local_zone), in GreedyAllocator()
100 allocations_.resize(num_registers()); in PreallocateFixedRanges()
102 allocations_[i] = new (local_zone()) CoalescedLiveRanges(local_zone()); in PreallocateFixedRanges()
366 CHECK(allocations_.empty()); in AllocateRegisters()
380 for (size_t i = 0; i < allocations_.size(); ++i) { in AllocateRegisters()
381 if (!allocations_[i]->empty()) { in AllocateRegisters()
385 allocations_.clear(); in AllocateRegisters()
/external/webrtc/webrtc/p2p/base/
Dturnserver.cc127 for (AllocationMap::iterator it = allocations_.begin(); in ~TurnServer()
128 it != allocations_.end(); ++it) { in ~TurnServer()
431 AllocationMap::const_iterator it = allocations_.find(*conn); in FindAllocation()
432 return (it != allocations_.end()) ? it->second : NULL; in FindAllocation()
448 allocations_[*conn] = allocation; in CreateAllocation()
513 AllocationMap::iterator it = allocations_.find(*(allocation->conn())); in OnAllocationDestroyed()
514 if (it != allocations_.end()) in OnAllocationDestroyed()
515 allocations_.erase(it); in OnAllocationDestroyed()
Dturnserver.h175 const AllocationMap& allocations() const { return allocations_; } in allocations()
271 AllocationMap allocations_; variable
/external/protobuf/src/google/protobuf/
Ddescriptor.cc461 vector<void*> allocations_; // All other memory allocated in the pool. member in google::protobuf::DescriptorPool::Tables
472 allocations_before_checkpoint(tables->allocations_.size()), in CheckPoint()
590 for (int i = 0; i < allocations_.size(); i++) { in ~Tables()
591 operator delete(allocations_[i]); in ~Tables()
661 i < allocations_.size(); in RollbackToLastCheckpoint()
663 operator delete(allocations_[i]); in RollbackToLastCheckpoint()
669 allocations_.resize(checkpoint.allocations_before_checkpoint); in RollbackToLastCheckpoint()
873 allocations_.push_back(result); in AllocateBytes()