Lines Matching refs:seek_result
363 SeekResult seek_result = SeekIndex(limit); in Rewind() local
364 DCHECK_NOT_NULL(seek_result.chunk_); in Rewind()
367 seek_result.chunk_->position_ = seek_result.chunk_index_; in Rewind()
370 back_ = seek_result.chunk_; in Rewind()
373 for (Chunk* current = seek_result.chunk_->next_; current != nullptr; in Rewind()
383 SeekResult seek_result = SeekIndex(index); in Find() local
384 return ForwardZoneChunkListIterator<T>(seek_result.chunk_, in Find()
385 seek_result.chunk_index_); in Find()
391 SeekResult seek_result = SeekIndex(index); in Find() local
392 return ForwardZoneChunkListIterator<const T>(seek_result.chunk_, in Find()
393 seek_result.chunk_index_); in Find()