Searched refs:prepend_this (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
H A Dmock_audio_vector.h27 void(const AudioVector<T>& prepend_this));
29 void(const T* prepend_this, size_t length));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Daudio_vector.h48 // Prepends the contents of AudioVector |prepend_this| to this object. The
49 // length of this object is increased with the length of |prepend_this|.
50 virtual void PushFront(const AudioVector& prepend_this);
52 // Same as above, but with an array |prepend_this| with |length| elements as
54 virtual void PushFront(const int16_t* prepend_this, size_t length);
H A Daudio_vector.cc34 void AudioVector::PushFront(const AudioVector& prepend_this) { argument
35 size_t insert_length = prepend_this.Size();
38 memcpy(&array_[0], &prepend_this.array_[0], insert_length * sizeof(int16_t));
42 void AudioVector::PushFront(const int16_t* prepend_this, size_t length) { argument
44 InsertAt(prepend_this, length, 0);

Completed in 1112 milliseconds