Lines Matching refs:preallocated_
202 ElementType preallocated_[kNPreallocatedElements]; variable
289 preallocated_[size_] = element; in insert()
292 vector_ = new std::vector<ElementType>(preallocated_, in insert()
293 preallocated_ + size_); in insert()
403 VIXL_ASSERT((preallocated_ <= element) && in EraseInternal()
404 (element < (preallocated_ + kNPreallocatedElements))); in EraseInternal()
405 ElementType* end = preallocated_ + kNPreallocatedElements; in EraseInternal()
536 return IsUsingVector() ? vector_->front() : preallocated_[0]; in Front()
543 return IsUsingVector() ? vector_->back() : preallocated_[size_ - 1]; in Back()
564 return IsUsingVector() ? &(vector_->front()) : preallocated_; in StorageBegin()
570 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_; in StorageEnd()
576 return IsUsingVector() ? &(vector_->front()) : preallocated_; in StorageBegin()
582 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_; in StorageEnd()
693 return &(inval_set_->preallocated_[index_]); in Current()
741 inval_set_->EraseInternal(inval_set_->preallocated_ + index_); in DeleteCurrentAndAdvance()
765 VIXL_ASSERT(inval_set_->empty() || IsValid(inval_set_->preallocated_[0])); in MoveToValidElement()