Home
last modified time | relevance | path

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

/third_party/libxml2/
Dxmlregexp.c344 int inputStackMax; member
3284 exec->inputStackMax = 0; in xmlFARegExec()
3628 exec->inputStackMax = 0; in xmlRegNewExecCtxt()
3680 if (exec->inputStackMax == 0) { in xmlFARegExecSaveInputString()
3681 exec->inputStackMax = 4; in xmlFARegExecSaveInputString()
3683 xmlMalloc(exec->inputStackMax * sizeof(xmlRegInputToken)); in xmlFARegExecSaveInputString()
3686 exec->inputStackMax = 0; in xmlFARegExecSaveInputString()
3689 } else if (exec->inputStackNr + 1 >= exec->inputStackMax) { in xmlFARegExecSaveInputString()
3692 exec->inputStackMax *= 2; in xmlFARegExecSaveInputString()
3694 exec->inputStackMax * sizeof(xmlRegInputToken)); in xmlFARegExecSaveInputString()
[all …]