Home
last modified time | relevance | path

Searched refs:bit_counts (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/src/modules/audio_processing/utility/
Ddelay_estimator.c53 int32_t* bit_counts) { in BitCountComparison() argument
58 bit_counts[n] = (int32_t) BitCount(binary_vector ^ binary_matrix[n]); in BitCountComparison()
69 if (handle->bit_counts != NULL) { in WebRtc_FreeBinaryDelayEstimator()
70 free(handle->bit_counts); in WebRtc_FreeBinaryDelayEstimator()
71 handle->bit_counts = NULL; in WebRtc_FreeBinaryDelayEstimator()
118 self->bit_counts = NULL; in WebRtc_CreateBinaryDelayEstimator()
132 self->bit_counts = malloc(history_size * sizeof(int32_t)); in WebRtc_CreateBinaryDelayEstimator()
133 if (self->bit_counts == NULL) { in WebRtc_CreateBinaryDelayEstimator()
166 memset(handle->bit_counts, 0, sizeof(int32_t) * handle->history_size); in WebRtc_InitBinaryDelayEstimator()
220 handle->bit_counts); in WebRtc_ProcessBinarySpectrum()
[all …]
Ddelay_estimator.h26 int32_t* bit_counts; member