Lines Matching defs:preallocated_
221 ElementType preallocated_[kNPreallocatedElements];
386 preallocated_[size_] = element;
391 new std::vector<ElementType>(preallocated_, preallocated_ + size_);
394 preallocated_, preallocated_ + size_, allocator_.Adapter());
507 VIXL_ASSERT((preallocated_ <= element) &&
508 (element < (preallocated_ + kNPreallocatedElements)));
509 ElementType* end = preallocated_ + kNPreallocatedElements;
639 return IsUsingVector() ? vector_->front() : preallocated_[0];
646 return IsUsingVector() ? vector_->back() : preallocated_[size_ - 1];
667 return IsUsingVector() ? &(vector_->front()) : preallocated_;
673 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_;
679 return IsUsingVector() ? &(vector_->front()) : preallocated_;
685 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_;
799 return &(inval_set_->preallocated_[index_]);
838 inval_set_->EraseInternal(inval_set_->preallocated_ + index_);
862 VIXL_ASSERT(inval_set_->empty() || IsValid(inval_set_->preallocated_[0]));