Home | History | Annotate | Download | only in neteq

Lines Matching refs:next_index_

20   return Size() - next_index_;
27 if (samples_added <= next_index_) {
28 next_index_ -= samples_added;
35 next_index_ = 0;
51 if (next_index_ >= position) {
52 // We are moving the |next_index_| sample.
53 set_next_index(next_index_ + length); // Overflow handled by subfunction.
81 ReadInterleavedFromIndex(next_index_, samples_to_read, output);
82 next_index_ += samples_to_read;
92 next_index_ = Size();
98 // Cannot set |next_index_| larger than the size of the buffer.
99 next_index_ = std::min(value, Size());