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

/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.h89 // - 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
H A Ddelay_estimator.h156 BinaryDelayEstimatorFarend* farend, int 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
H A Ddelay_estimator_wrapper.c273 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead) { argument
286 WebRtc_CreateBinaryDelayEstimator(farend->binary_farend, max_lookahead);
/external/chromium_org/v8/src/
H A Djsregexp.cc3724 // max_lookahead (inclusive) measured from the current position. If the
3725 // character at max_lookahead offset is not one of these characters, then we
3728 int max_lookahead,
3738 int skip = max_lookahead + 1 - min_lookahead;
3740 for (int i = max_lookahead; i >= min_lookahead; i--) {
3758 int max_lookahead = 0; local
3760 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return;
3764 for (int i = max_lookahead; i >= min_lookahead; i--) {
3780 int lookahead_width = max_lookahead + 1 - min_lookahead;
3782 if (found_single_character && lookahead_width == 1 && max_lookahead <
3727 GetSkipTable(int min_lookahead, int max_lookahead, Handle<ByteArray> boolean_skip_table) argument
[all...]
H A Djsregexp.h1337 int max_lookahead,

Completed in 947 milliseconds