Searched defs:max_lookahead (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.c273 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead) { argument
286 WebRtc_CreateBinaryDelayEstimator(farend->binary_farend, max_lookahead);
H A Ddelay_estimator.c402 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));
401 WebRtc_CreateBinaryDelayEstimator( BinaryDelayEstimatorFarend* farend, int max_lookahead) argument
/external/v8/src/regexp/
H A Djsregexp.cc3765 // max_lookahead (inclusive) measured from the current position. If the
3766 // character at max_lookahead offset is not one of these characters, then we
3769 int max_lookahead,
3779 int skip = max_lookahead + 1 - min_lookahead;
3781 for (int i = max_lookahead; i >= min_lookahead; i--) {
3799 int max_lookahead = 0; local
3801 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return;
3805 for (int i = max_lookahead; i >= min_lookahead; i--) {
3821 int lookahead_width = max_lookahead + 1 - min_lookahead;
3823 if (found_single_character && lookahead_width == 1 && max_lookahead <
3768 GetSkipTable(int min_lookahead, int max_lookahead, Handle<ByteArray> boolean_skip_table) argument
[all...]

Completed in 540 milliseconds