Searched refs:maxStates (Results 1 – 1 of 1) sorted by relevance
257 int maxStates; member1453 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()