Lines Matching refs:preallocated_
215 ElementType preallocated_[kNPreallocatedElements]; variable
358 preallocated_[size_] = element; in insert()
362 new std::vector<ElementType>(preallocated_, preallocated_ + size_); in insert()
474 VIXL_ASSERT((preallocated_ <= element) && in EraseInternal()
475 (element < (preallocated_ + kNPreallocatedElements))); in EraseInternal()
476 ElementType* end = preallocated_ + kNPreallocatedElements; in EraseInternal()
606 return IsUsingVector() ? vector_->front() : preallocated_[0]; in Front()
613 return IsUsingVector() ? vector_->back() : preallocated_[size_ - 1]; in Back()
634 return IsUsingVector() ? &(vector_->front()) : preallocated_; in StorageBegin()
640 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_; in StorageEnd()
646 return IsUsingVector() ? &(vector_->front()) : preallocated_; in StorageBegin()
652 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_; in StorageEnd()
761 return &(inval_set_->preallocated_[index_]); in Current()
800 inval_set_->EraseInternal(inval_set_->preallocated_ + index_); in DeleteCurrentAndAdvance()
824 VIXL_ASSERT(inval_set_->empty() || IsValid(inval_set_->preallocated_[0])); in MoveToValidElement()