HomeSort by relevance Sort by last modified time
    Searched refs:overflow_blocks_ (Results 1 - 2 of 2) sorted by null

  /external/regex-re2/util/
arena.cc 22 overflow_blocks_(NULL) {
33 assert(overflow_blocks_ == NULL); // FreeBlocks() should do that
68 // affect overflow_blocks_).
78 if (overflow_blocks_ == NULL) overflow_blocks_ = new vector<AllocatedBlock>;
80 overflow_blocks_->resize(overflow_blocks_->size()+1);
82 block = &overflow_blocks_->back();
158 if (overflow_blocks_ != NULL) {
160 for (it = overflow_blocks_->begin(); it != overflow_blocks_->end(); ++it)
    [all...]
arena.h 68 // or Reset (i.e. anything that might affect overflow_blocks_).
81 // if the first_blocks_ aren't enough, expand into overflow_blocks_.
82 vector<AllocatedBlock>* overflow_blocks_; member in class:re2::UnsafeArena

Completed in 37 milliseconds