Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.cc3622 for (int max_number_of_chars = 4; in FindWorthwhileInterval() local
3623 max_number_of_chars < kMaxMax; in FindWorthwhileInterval()
3624 max_number_of_chars *= 2) { in FindWorthwhileInterval()
3626 FindBestInterval(max_number_of_chars, biggest_points, from, to); in FindWorthwhileInterval()
3640 int max_number_of_chars, int old_biggest_points, int* from, int* to) { in FindBestInterval() argument
3644 while (i < length_ && Count(i) > max_number_of_chars) i++; in FindBestInterval()
3649 while (i < length_ && Count(i) <= max_number_of_chars) { in FindBestInterval()
Djsregexp.h1211 int max_number_of_chars, int old_biggest_points, int* from, int* to);