OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:half_length
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/transient/
dyadic_decimator.h
53
size_t
half_length
= GetOutLengthToDyadicDecimate(in_length, odd_sequence);
local
55
if (!in || !out || in_length <= 0 || out_length <
half_length
) {
61
for (output_samples = 0; output_samples <
half_length
; ++output_samples) {
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
cv_util.py
56
half_length
= length / 2.0
58
xoffsets =
half_length
* np.cos(angles)
59
yoffsets =
half_length
* np.sin(angles)
/external/chromium-trace/catapult/telemetry/telemetry/internal/util/
exception_formatter.py
105
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/third_party/webpagereplay/
exception_formatter.py
94
half_length
= (max_length - len(middle)) / 2.
95
return (target[:int(math.floor(
half_length
))] + middle +
96
target[-int(math.ceil(
half_length
)):])
/external/webrtc/webrtc/common_audio/vad/
vad_sp.c
36
size_t
half_length
= (in_length >> 1);
local
39
for (n = 0; n <
half_length
; n++) {
vad_filterbank.c
124
size_t
half_length
= data_length >> 1; // Downsampling by 2.
local
128
AllPassFilter(&data_in[0],
half_length
, kAllPassCoefsQ15[0], upper_state,
132
AllPassFilter(&data_in[1],
half_length
, kAllPassCoefsQ15[1], lower_state,
136
for (i = 0; i <
half_length
; i++) {
Completed in 601 milliseconds