Searched refs:preallocated_ (Results 1 – 1 of 1) sorted by relevance
215 ElementType preallocated_[kNPreallocatedElements]; variable359 preallocated_[size_] = element; in insert()363 new std::vector<ElementType>(preallocated_, preallocated_ + size_); in insert()475 VIXL_ASSERT((preallocated_ <= element) && in EraseInternal()476 (element < (preallocated_ + kNPreallocatedElements))); in EraseInternal()477 ElementType* end = preallocated_ + kNPreallocatedElements; in EraseInternal()607 return IsUsingVector() ? vector_->front() : preallocated_[0]; in Front()614 return IsUsingVector() ? vector_->back() : preallocated_[size_ - 1]; in Back()635 return IsUsingVector() ? &(vector_->front()) : preallocated_; in StorageBegin()641 return IsUsingVector() ? &(vector_->back()) + 1 : preallocated_ + size_; in StorageEnd()[all …]