OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AddToMean
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.cc
47
void
AddToMean
(complex<float> data, size_t count, complex<float>* mean) {
196
AddToMean
(data[i], count_ + 1, &sub_running_mean_[i]);
197
AddToMean
(data[i] * std::conj(data[i]), count_ + 1,
213
AddToMean
(subhistory_[i][j], j + 1, &running_mean_[i]);
214
AddToMean
(subhistory_sq_[i][j], j + 1, &running_mean_sq_[i]);
intelligibility_utils.h
42
void
AddToMean
(std::complex<float> data,
intelligibility_utils_unittest.cc
59
// Tests NewMean and
AddToMean
.
66
AddToMean
(data[i], i + 1, &mean);
Completed in 2394 milliseconds