Home
last modified time | relevance | path

Searched refs:size_bytes (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/src/modules/audio_processing/
Decho_control_mobile_impl.cc197 size_t size_bytes) { in SetEchoPath() argument
202 if (size_bytes != echo_path_size_bytes()) { in SetEchoPath()
208 external_echo_path_ = new unsigned char[size_bytes]; in SetEchoPath()
210 memcpy(external_echo_path_, echo_path, size_bytes); in SetEchoPath()
216 size_t size_bytes) const { in GetEchoPath()
221 if (size_bytes != echo_path_size_bytes()) { in GetEchoPath()
231 if (WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes) != 0) { in GetEchoPath()
Decho_control_mobile_impl.h44 virtual int SetEchoPath(const void* echo_path, size_t size_bytes);
45 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const;
/external/webrtc/src/modules/audio_processing/aecm/interface/
Decho_control_mobile.h187 size_t size_bytes);
206 size_t size_bytes);
/external/webrtc/src/common_audio/vad/
Dwebrtc_vad.c25 WebRtc_Word16 WebRtcVad_get_version(char *version, size_t size_bytes) in WebRtcVad_get_version() argument
34 if (size_bytes < sizeof(my_version)) in WebRtcVad_get_version()
/external/webrtc/src/modules/audio_processing/aecm/
Decho_control_mobile.c645 size_t size_bytes) in WebRtcAecm_InitEchoPath() argument
655 if (size_bytes != WebRtcAecm_echo_path_size_bytes()) in WebRtcAecm_InitEchoPath()
674 size_t size_bytes) in WebRtcAecm_GetEchoPath() argument
684 if (size_bytes != WebRtcAecm_echo_path_size_bytes()) in WebRtcAecm_GetEchoPath()
696 memcpy(echo_path_ptr, aecm->aecmCore->channelStored, size_bytes); in WebRtcAecm_GetEchoPath()
/external/webrtc/src/common_audio/vad/include/
Dwebrtc_vad.h40 WebRtc_Word16 WebRtcVad_get_version(char *version, size_t size_bytes);
/external/webrtc/src/modules/audio_processing/interface/
Daudio_processing.h384 virtual int SetEchoPath(const void* echo_path, size_t size_bytes) = 0;
385 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const = 0;
/external/chromium/net/proxy/
Dproxy_script_fetcher_impl.cc101 size_t ProxyScriptFetcherImpl::SetSizeConstraint(size_t size_bytes) { in SetSizeConstraint() argument
103 max_response_bytes_ = size_bytes; in SetSizeConstraint()
Dproxy_script_fetcher_impl.h42 size_t SetSizeConstraint(size_t size_bytes);
/external/tinyalsa/
Dpcm.c296 int size_bytes = pcm_frames_to_bytes(pcm, frames); in pcm_areas_copy() local
302 src + src_offset_bytes, size_bytes); in pcm_areas_copy()