Home
last modified time | relevance | path

Searched refs:half_length (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/transient/
Ddyadic_decimator.h53 size_t half_length = GetOutLengthToDyadicDecimate(in_length, odd_sequence); in DyadicDecimate() local
55 if (!in || !out || in_length <= 0 || out_length < half_length) { in DyadicDecimate()
61 for (output_samples = 0; output_samples < half_length; ++output_samples) { in DyadicDecimate()
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dexception_formatter.py94 half_length = (max_length - len(middle)) / 2.
95 return (target[:int(math.floor(half_length))] + middle +
96 target[-int(math.ceil(half_length)):])
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
Dexception_formatter.py105 half_length = (max_length - len(middle)) / 2.
106 return (target[:int(math.floor(half_length))] + middle +
107 target[-int(math.ceil(half_length)):])
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dcv_util.py56 half_length = length / 2.0
58 xoffsets = half_length * np.cos(angles)
59 yoffsets = half_length * np.sin(angles)
/external/webrtc/webrtc/common_audio/vad/
Dvad_filterbank.c124 size_t half_length = data_length >> 1; // Downsampling by 2. in SplitFilter() local
128 AllPassFilter(&data_in[0], half_length, kAllPassCoefsQ15[0], upper_state, in SplitFilter()
132 AllPassFilter(&data_in[1], half_length, kAllPassCoefsQ15[1], lower_state, in SplitFilter()
136 for (i = 0; i < half_length; i++) { in SplitFilter()
Dvad_sp.c36 size_t half_length = (in_length >> 1); in WebRtcVad_Downsampling() local
39 for (n = 0; n < half_length; n++) { in WebRtcVad_Downsampling()