Home
last modified time | relevance | path

Searched refs:begin_index_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/modules/audio_coding/neteq/
Daudio_vector.cc29 begin_index_(0), in AudioVector()
37 end_index_ = begin_index_ = 0; in Clear()
44 copy_to->begin_index_ = 0; in CopyTo()
54 const size_t copy_index = (begin_index_ + position) % capacity_; in CopyTo()
74 std::min(length, prepend_this.capacity_ - prepend_this.begin_index_); in PushFront()
78 PushFront(&prepend_this.array_[prepend_this.begin_index_], in PushFront()
86 const size_t first_chunk_length = std::min(length, begin_index_); in PushFront()
87 memcpy(&array_[begin_index_ - first_chunk_length], in PushFront()
95 begin_index_ = (begin_index_ + capacity_ - length) % capacity_; in PushFront()
116 (append_this.begin_index_ + position) % append_this.capacity_; in PushBack()
[all …]
Daudio_vector.h117 return array_[WrapIndex(index, begin_index_, capacity_)];
121 return array_[WrapIndex(index, begin_index_, capacity_)];
163 size_t begin_index_; variable