Searched refs:prepend_this (Results 1 – 2 of 2) sorted by relevance
64 void AudioVector::PushFront(const AudioVector& prepend_this) { in PushFront() argument65 const size_t length = prepend_this.Size(); in PushFront()74 std::min(length, prepend_this.capacity_ - prepend_this.begin_index_); in PushFront()77 PushFront(prepend_this.array_.get(), remaining_length); in PushFront()78 PushFront(&prepend_this.array_[prepend_this.begin_index_], in PushFront()82 void AudioVector::PushFront(const int16_t* prepend_this, size_t length) { in PushFront() argument88 &prepend_this[length - first_chunk_length], in PushFront()92 memcpy(&array_[capacity_ - remaining_length], prepend_this, in PushFront()
47 virtual void PushFront(const AudioVector& prepend_this);51 virtual void PushFront(const int16_t* prepend_this, size_t length);