Home | History | Annotate | Download | only in libxml2

Lines Matching defs:maxStates

253     int maxStates;
1418 if (ctxt->maxStates == 0) {
1419 ctxt->maxStates = 4;
1420 ctxt->states = (xmlRegStatePtr *) xmlMalloc(ctxt->maxStates *
1424 ctxt->maxStates = 0;
1427 } else if (ctxt->nbStates >= ctxt->maxStates) {
1429 ctxt->maxStates *= 2;
1430 tmp = (xmlRegStatePtr *) xmlRealloc(ctxt->states, ctxt->maxStates *
1434 ctxt->maxStates /= 2;