Lines Matching refs:maxStep
103 int maxStep; /* allocated number of steps */ member
171 int maxStep; member
213 cur->maxStep = 10; in xmlNewPattern()
214 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern()
351 if (comp->nbStep >= comp->maxStep) { in xmlPatternAdd()
353 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd()
361 comp->maxStep *= 2; in xmlPatternAdd()
422 if (comp->nbStep >= comp->maxStep) { in xmlReversePattern()
424 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlReversePattern()
432 comp->maxStep *= 2; in xmlReversePattern()
1512 cur->maxStep = size; in xmlNewStreamComp()
1549 if (comp->nbStep >= comp->maxStep) { in xmlStreamCompAddStep()
1551 comp->maxStep * 2 * sizeof(xmlStreamStep)); in xmlStreamCompAddStep()
1558 comp->maxStep *= 2; in xmlStreamCompAddStep()