Home
last modified time | relevance | path

Searched refs:max_lookahead (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/utility/
Ddelay_estimator.c402 BinaryDelayEstimatorFarend* farend, int max_lookahead) { in WebRtc_CreateBinaryDelayEstimator() argument
405 if ((farend != NULL) && (max_lookahead >= 0)) { in WebRtc_CreateBinaryDelayEstimator()
414 self->near_history_size = max_lookahead + 1; in WebRtc_CreateBinaryDelayEstimator()
419 self->lookahead = max_lookahead; in WebRtc_CreateBinaryDelayEstimator()
426 malloc((max_lookahead + 1) * sizeof(*self->binary_near_history)); in WebRtc_CreateBinaryDelayEstimator()
Ddelay_estimator_wrapper.h115 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead);
Ddelay_estimator.h156 BinaryDelayEstimatorFarend* farend, int max_lookahead);
Ddelay_estimator_wrapper.c273 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead) { in WebRtc_CreateDelayEstimator() argument
286 WebRtc_CreateBinaryDelayEstimator(farend->binary_farend, max_lookahead); in WebRtc_CreateDelayEstimator()
/external/v8/src/regexp/
Djsregexp.cc3693 int max_lookahead, in GetSkipTable() argument
3703 int skip = max_lookahead + 1 - min_lookahead; in GetSkipTable()
3705 for (int i = max_lookahead; i >= min_lookahead; i--) { in GetSkipTable()
3723 int max_lookahead = 0; in EmitSkipInstructions() local
3725 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return; in EmitSkipInstructions()
3729 for (int i = max_lookahead; i >= min_lookahead; i--) { in EmitSkipInstructions()
3745 int lookahead_width = max_lookahead + 1 - min_lookahead; in EmitSkipInstructions()
3747 if (found_single_character && lookahead_width == 1 && max_lookahead < 3) { in EmitSkipInstructions()
3755 masm->LoadCurrentCharacter(max_lookahead, &cont, true); in EmitSkipInstructions()
3772 min_lookahead, max_lookahead, boolean_skip_table); in EmitSkipInstructions()
[all …]
Djsregexp.h1207 int max_lookahead,