Home | History | Annotate | Download | only in protobuf

Lines Matching full:allocations_

400   vector<void*> allocations_;  // All other memory allocated in the pool.
488 // messages may refer to objects in allocations_.
490 for (int i = 0; i < allocations_.size(); i++) {
491 operator delete(allocations_[i]);
506 allocations_before_checkpoint_ = allocations_.size();
534 for (int i = allocations_before_checkpoint_; i < allocations_.size(); i++) {
535 operator delete(allocations_[i]);
541 allocations_.resize(allocations_before_checkpoint_);
742 allocations_.push_back(result);