OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copy_to
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
packet.cc
124
void Packet::ConvertHeader(WebRtcRTPHeader*
copy_to
) const {
125
memcpy(&
copy_to
->header, &header_, sizeof(header_));
126
copy_to
->frameType = kAudioFrameSpeech;
127
copy_to
->type.Audio.numEnergy = 0;
128
copy_to
->type.Audio.channel = 1;
129
copy_to
->type.Audio.isCNG = false;
packet.h
95
void ConvertHeader(WebRtcRTPHeader*
copy_to
) const;
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_audio_vector.h
25
void(AudioVector<T>*
copy_to
));
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_vector.cc
25
void AudioVector::CopyTo(AudioVector*
copy_to
) const {
26
if (
copy_to
) {
27
copy_to
->Reserve(Size());
28
assert(
copy_to
->capacity_ >= Size());
29
memcpy(
copy_to
->array_.get(), array_.get(), Size() * sizeof(int16_t));
30
copy_to
->first_free_ix_ = first_free_ix_;
audio_multi_vector.h
42
// Copies all values from this vector to |
copy_to
|. Any contents in |
copy_to
|
43
// are deleted. After the operation is done, |
copy_to
| will be an exact
46
virtual void CopyTo(AudioMultiVector*
copy_to
) const;
audio_vector.h
43
// Copies all values from this vector to |
copy_to
|. Any contents in |
copy_to
|
45
// |
copy_to
| will be an exact replica of this object.
46
virtual void CopyTo(AudioVector*
copy_to
) const;
audio_multi_vector.cc
60
void AudioMultiVector::CopyTo(AudioMultiVector*
copy_to
) const {
61
if (
copy_to
) {
63
channels_[i]->CopyTo(&(*
copy_to
)[i]);
/external/chromium_org/v8/src/arm64/
builtins-arm64.cc
1449
Register
copy_to
= x12;
local
1489
Register
copy_to
= x12;
local
[
all
...]
/external/chromium_org/remoting/host/linux/
linux_me2me_host.py
186
def
copy_to
(self, config):
member in class:Authentication
210
def
copy_to
(self, config):
member in class:Host
[
all
...]
Completed in 517 milliseconds