Searched refs:max_lookahead (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/utility/ |
D | delay_estimator.c | 402 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()
|
D | delay_estimator_wrapper.h | 115 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead);
|
D | delay_estimator.h | 156 BinaryDelayEstimatorFarend* farend, int max_lookahead);
|
D | delay_estimator_wrapper.c | 273 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/ |
D | jsregexp.cc | 3765 int max_lookahead, in GetSkipTable() argument 3775 int skip = max_lookahead + 1 - min_lookahead; in GetSkipTable() 3777 for (int i = max_lookahead; i >= min_lookahead; i--) { in GetSkipTable() 3795 int max_lookahead = 0; in EmitSkipInstructions() local 3797 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return; in EmitSkipInstructions() 3801 for (int i = max_lookahead; i >= min_lookahead; i--) { in EmitSkipInstructions() 3817 int lookahead_width = max_lookahead + 1 - min_lookahead; in EmitSkipInstructions() 3819 if (found_single_character && lookahead_width == 1 && max_lookahead < 3) { in EmitSkipInstructions() 3827 masm->LoadCurrentCharacter(max_lookahead, &cont, true); in EmitSkipInstructions() 3844 min_lookahead, max_lookahead, boolean_skip_table); in EmitSkipInstructions() [all …]
|
D | jsregexp.h | 1174 int max_lookahead,
|