OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:coefficients_
(Results
1 - 5
of
5
) sorted by null
/external/webrtc/webrtc/common_audio/
fir_filter_neon.cc
27
coefficients_
(static_cast<float*>(
34
memset(
coefficients_
.get(), 0.f, padding * sizeof(
coefficients_
[0]));
38
coefficients_
[i + padding] = coefficients[coefficients_length - i - 1];
50
// Convolves the input signal |in| with the filter kernel |
coefficients_
|
54
float* coef_ptr =
coefficients_
.get();
fir_filter_sse.cc
27
coefficients_
(static_cast<float*>(
34
memset(
coefficients_
.get(), 0, padding * sizeof(
coefficients_
[0]));
38
coefficients_
[i + padding] = coefficients[coefficients_length - i - 1];
50
// Convolves the input signal |in| with the filter kernel |
coefficients_
|
54
float* coef_ptr =
coefficients_
.get();
fir_filter.cc
33
rtc::scoped_ptr<float[]>
coefficients_
;
member in class:webrtc::FIRFilterC
80
coefficients_
(new float[coefficients_length_]),
83
coefficients_
[i] = coefficients[coefficients_length_ - i - 1];
91
// Convolves the input signal |in| with the filter kernel |
coefficients_
|
97
out[i] += state_[i + j] *
coefficients_
[j];
100
out[i] += in[j + i - state_length_] *
coefficients_
[j];
fir_filter_neon.h
31
rtc::scoped_ptr<float[], AlignedFreeDeleter>
coefficients_
;
member in class:webrtc::FIRFilterNEON
fir_filter_sse.h
31
rtc::scoped_ptr<float[], AlignedFreeDeleter>
coefficients_
;
member in class:webrtc::FIRFilterSSE2
Completed in 52 milliseconds