OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copy_to
(Results
1 - 10
of
10
) sorted by null
/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::CopyFrom(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 CopyFrom(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 CopyFrom(AudioVector*
copy_to
) const;
audio_multi_vector.cc
60
void AudioMultiVector::CopyFrom(AudioMultiVector*
copy_to
) const {
61
if (
copy_to
) {
63
channels_[i]->CopyFrom(&(*
copy_to
)[i]);
/external/wpa_supplicant_8/src/ap/
ieee802_11_auth.c
80
struct hostapd_sta_wpa_psk_short **
copy_to
;
local
84
copy_to
= psk;
86
while (copy_from &&
copy_to
) {
87
*
copy_to
= os_zalloc(sizeof(struct hostapd_sta_wpa_psk_short));
88
if (*
copy_to
== NULL)
90
os_memcpy(*
copy_to
, copy_from,
93
copy_to
= &((*
copy_to
)->next);
95
if (
copy_to
)
96
*
copy_to
= NULL
[
all
...]
/external/srec/config/en.us/
Android.mk
21
copy_to
:= $(addprefix $(TARGET_OUT)/usr/srec/config/en.us/,$(copy_from))
macro
23
$(
copy_to
) : $(TARGET_OUT)/usr/srec/config/en.us/% : $(LOCAL_PATH)/% | $(ACP)
27
# ALL_PREBUILT += $(
copy_to
)
/external/chromium_org/v8/src/arm64/
builtins-arm64.cc
1450
Register
copy_to
= x12;
local
1490
Register
copy_to
= x12;
local
[
all
...]
/external/srec/tests/
Android.mk
86
copy_to
:= $(addprefix $(TARGET_OUT)/usr/srec/config/,$(copy_from))
macro
88
$(
copy_to
) : $(TARGET_OUT)/usr/srec/config/% : $(LOCAL_PATH)/% | $(ACP)
137
srec_test_files : $(
copy_to
) $(copy_to_scripts) $(copy_to_pcm) srec_grammars
/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 320 milliseconds