Searched refs:maxRollbacks (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libxml/src/
H A Dxmlregexp.c320 int maxRollbacks; member in struct:_xmlRegExecCtxt
3092 if (exec->maxRollbacks == 0) {
3093 exec->maxRollbacks = 4;
3094 exec->rollbacks = (xmlRegExecRollback *) xmlMalloc(exec->maxRollbacks *
3098 exec->maxRollbacks = 0;
3102 exec->maxRollbacks * sizeof(xmlRegExecRollback));
3103 } else if (exec->nbRollbacks >= exec->maxRollbacks) {
3105 int len = exec->maxRollbacks;
3107 exec->maxRollbacks *= 2;
3109 exec->maxRollbacks * sizeo
[all...]
/external/libxml2/
H A Dxmlregexp.c324 int maxRollbacks; member in struct:_xmlRegExecCtxt
3100 if (exec->maxRollbacks == 0) {
3101 exec->maxRollbacks = 4;
3102 exec->rollbacks = (xmlRegExecRollback *) xmlMalloc(exec->maxRollbacks *
3106 exec->maxRollbacks = 0;
3110 exec->maxRollbacks * sizeof(xmlRegExecRollback));
3111 } else if (exec->nbRollbacks >= exec->maxRollbacks) {
3113 int len = exec->maxRollbacks;
3115 exec->maxRollbacks *= 2;
3117 exec->maxRollbacks * sizeo
[all...]

Completed in 148 milliseconds