Searched refs:copy_index (Results 1 – 1 of 1) sorted by relevance
54 const size_t copy_index = (begin_index_ + position) % capacity_; in CopyTo() local55 const size_t first_chunk_length = std::min(length, capacity_ - copy_index); in CopyTo()56 memcpy(copy_to, &array_[copy_index], first_chunk_length * sizeof(int16_t)); in CopyTo()