Home
last modified time | relevance | path

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

/external/v8/src/
Djsregexp.cc3728 int max_lookahead, in GetSkipTable() argument
3738 int skip = max_lookahead + 1 - min_lookahead; in GetSkipTable()
3740 for (int i = max_lookahead; i >= min_lookahead; i--) { in GetSkipTable()
3758 int max_lookahead = 0; in EmitSkipInstructions() local
3760 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return; in EmitSkipInstructions()
3764 for (int i = max_lookahead; i >= min_lookahead; i--) { in EmitSkipInstructions()
3780 int lookahead_width = max_lookahead + 1 - min_lookahead; in EmitSkipInstructions()
3782 if (found_single_character && lookahead_width == 1 && max_lookahead < 3) { in EmitSkipInstructions()
3790 masm->LoadCurrentCharacter(max_lookahead, &cont, true); in EmitSkipInstructions()
3807 min_lookahead, max_lookahead, boolean_skip_table); in EmitSkipInstructions()
[all …]
Djsregexp.h1337 int max_lookahead,