Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.cc3173 static void UpdateBoundsCheck(int index, int* checked_up_to) { in UpdateBoundsCheck() argument
3174 if (index > *checked_up_to) { in UpdateBoundsCheck()
3175 *checked_up_to = index; in UpdateBoundsCheck()
3214 int* checked_up_to) { in TextEmitPass() argument
3252 bool bounds_check = *checked_up_to < cp_offset + j || read_backward(); in TextEmitPass()
3256 if (bound_checked) UpdateBoundsCheck(cp_offset + j, checked_up_to); in TextEmitPass()
3265 bool bounds_check = *checked_up_to < cp_offset || read_backward(); in TextEmitPass()
3268 UpdateBoundsCheck(cp_offset, checked_up_to); in TextEmitPass()
Djsregexp.h727 int* checked_up_to);