Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/yarr/
DRegexJIT.cpp211 Jump jumpIfNoAvailableInput(unsigned countToCheck) in jumpIfNoAvailableInput() argument
213 add32(Imm32(countToCheck), index); in jumpIfNoAvailableInput()
217 Jump jumpIfAvailableInput(unsigned countToCheck) in jumpIfAvailableInput() argument
219 add32(Imm32(countToCheck), index); in jumpIfAvailableInput()
795 int countToCheck = alternative->m_minimumSize - preCheckedCount; in generateParenthesesDisjunction() local
796 if (countToCheck) { in generateParenthesesDisjunction()
805 sub32(Imm32(countToCheck), index); in generateParenthesesDisjunction()
812 state.jumpToBacktrack(jumpIfNoAvailableInput(countToCheck), this); in generateParenthesesDisjunction()
813 state.checkedTotal += countToCheck; in generateParenthesesDisjunction()
819 state.checkedTotal -= countToCheck; in generateParenthesesDisjunction()
[all …]
DRegexInterpreter.cpp1527 unsigned countToCheck = minimumSize - parenthesesInputCountAlreadyChecked; in emitDisjunction() local
1528 if (countToCheck) in emitDisjunction()
1529 checkInput(countToCheck); in emitDisjunction()
1530 currentCountAlreadyChecked += countToCheck; in emitDisjunction()