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

/external/chromium_org/third_party/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator_wrapper.c270 void* WebRtc_CreateDelayEstimator(void* farend_handle, int max_lookahead) { argument
283 WebRtc_CreateBinaryDelayEstimator(farend->binary_farend, max_lookahead);
H A Ddelay_estimator.c381 BinaryDelayEstimatorFarend* farend, int max_lookahead) {
384 if ((farend != NULL) && (max_lookahead >= 0)) {
393 self->near_history_size = max_lookahead + 1;
397 self->lookahead = max_lookahead;
410 self->binary_near_history = malloc((max_lookahead + 1) * sizeof(uint32_t));
380 WebRtc_CreateBinaryDelayEstimator( BinaryDelayEstimatorFarend* farend, int max_lookahead) argument
/external/chromium_org/v8/src/
H A Djsregexp.cc3731 // max_lookahead (inclusive) measured from the current position. If the
3732 // character at max_lookahead offset is not one of these characters, then we
3735 int max_lookahead,
3745 int skip = max_lookahead + 1 - min_lookahead;
3747 for (int i = max_lookahead; i >= min_lookahead; i--) {
3765 int max_lookahead = 0; local
3767 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return false;
3771 for (int i = max_lookahead; i >= min_lookahead; i--) {
3787 int lookahead_width = max_lookahead + 1 - min_lookahead;
3789 if (found_single_character && lookahead_width == 1 && max_lookahead <
3734 GetSkipTable(int min_lookahead, int max_lookahead, Handle<ByteArray> boolean_skip_table) argument
[all...]

Completed in 231 milliseconds