Home
last modified time | relevance | path

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

/external/libxml2/
Dxmlregexp.c336 int inputStackMax; member
3212 exec->inputStackMax = 0; in xmlFARegExec()
3556 exec->inputStackMax = 0; in xmlRegNewExecCtxt()
3608 if (exec->inputStackMax == 0) { in xmlFARegExecSaveInputString()
3609 exec->inputStackMax = 4; in xmlFARegExecSaveInputString()
3611 xmlMalloc(exec->inputStackMax * sizeof(xmlRegInputToken)); in xmlFARegExecSaveInputString()
3614 exec->inputStackMax = 0; in xmlFARegExecSaveInputString()
3617 } else if (exec->inputStackNr + 1 >= exec->inputStackMax) { in xmlFARegExecSaveInputString()
3620 exec->inputStackMax *= 2; in xmlFARegExecSaveInputString()
3622 exec->inputStackMax * sizeof(xmlRegInputToken)); in xmlFARegExecSaveInputString()
[all …]