Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/libxml2/
H A Dxmlregexp.c257 int maxStates; member
1453 if (ctxt->maxStates == 0) { in xmlRegStatePush()
1454 ctxt->maxStates = 4; in xmlRegStatePush()
1455 ctxt->states = (xmlRegStatePtr *) xmlMalloc(ctxt->maxStates * in xmlRegStatePush()
1459 ctxt->maxStates = 0; in xmlRegStatePush()
1462 } else if (ctxt->nbStates >= ctxt->maxStates) { in xmlRegStatePush()
1464 ctxt->maxStates *= 2; in xmlRegStatePush()
1465 tmp = (xmlRegStatePtr *) xmlRealloc(ctxt->states, ctxt->maxStates * in xmlRegStatePush()
1469 ctxt->maxStates /= 2; in xmlRegStatePush()