Lines Matching refs:index
182 // Returns the index of the element within the backing storage. The element
186 // Returns the element at the specified index in the backing storage.
187 const ElementType* GetElementAt(size_t index) const;
188 ElementType* GetElementAt(size_t index);
548 // Avoid overflow when computing the middle index.
699 size_t index) const {
700 VIXL_ASSERT((IsUsingVector() && (index < vector_->size())) ||
701 (index < size_));
702 return StorageBegin() + index;
706 ElementType* InvalSet<TEMPLATE_INVALSET_P_DEF>::GetElementAt(size_t index) {
707 VIXL_ASSERT((IsUsingVector() && (index < vector_->size())) ||
708 (index < size_));
709 return StorageBegin() + index;