HomeSort by relevance Sort by last modified time
    Searched refs:max_lookahead (Results 1 - 6 of 6) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.h 89 // - max_lookahead : Maximum amount of non-causal lookahead allowed. The
92 // set to |max_lookahead| at create time. Use
115 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead);
149 // Sets the amount of |lookahead| to use. Valid values are [0, max_lookahead]
150 // where |max_lookahead| was set at create time through
delay_estimator.h 156 BinaryDelayEstimatorFarend* farend, int max_lookahead);
delay_estimator.c 402 BinaryDelayEstimatorFarend* farend, int max_lookahead) {
405 if ((farend != NULL) && (max_lookahead >= 0)) {
414 self->near_history_size = max_lookahead + 1;
419 self->lookahead = max_lookahead;
426 malloc((max_lookahead + 1) * sizeof(*self->binary_near_history));
delay_estimator_wrapper.c 273 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead) {
286 WebRtc_CreateBinaryDelayEstimator(farend->binary_farend, max_lookahead);
  /external/v8/src/regexp/
jsregexp.cc 3799 int max_lookahead = 0; local
    [all...]
jsregexp.h     [all...]

Completed in 108 milliseconds