Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.cc3125 static void UpdateBoundsCheck(int index, int* checked_up_to) { in UpdateBoundsCheck() argument
3126 if (index > *checked_up_to) { in UpdateBoundsCheck()
3127 *checked_up_to = index; in UpdateBoundsCheck()
3166 int* checked_up_to) { in TextEmitPass() argument
3212 bool bounds_check = *checked_up_to < cp_offset + j || read_backward(); in TextEmitPass()
3216 if (bound_checked) UpdateBoundsCheck(cp_offset + j, checked_up_to); in TextEmitPass()
3225 bool bounds_check = *checked_up_to < cp_offset || read_backward(); in TextEmitPass()
3228 UpdateBoundsCheck(cp_offset, checked_up_to); in TextEmitPass()
Djsregexp.h751 int* checked_up_to);