Lines Matching defs:maxStates
255 int maxStates;
1425 if (ctxt->maxStates == 0) {
1426 ctxt->maxStates = 4;
1427 ctxt->states = (xmlRegStatePtr *) xmlMalloc(ctxt->maxStates *
1431 ctxt->maxStates = 0;
1434 } else if (ctxt->nbStates >= ctxt->maxStates) {
1436 ctxt->maxStates *= 2;
1437 tmp = (xmlRegStatePtr *) xmlRealloc(ctxt->states, ctxt->maxStates *
1441 ctxt->maxStates /= 2;