Lines Matching refs:nbState
111 int nbState; /* number of states in the automata */ member
1462 printf("Stream: level %d, %d states: ", ctxt->level, ctxt->nbState); in xmlDebugStreamCtxt()
1467 for (i = 0;i < ctxt->nbState;i++) { in xmlDebugStreamCtxt()
1776 cur->nbState = 0; in xmlNewStreamCtxt()
1815 for (i = 0;i < comp->nbState;i++) { in xmlStreamCtxtAddState()
1822 if (comp->nbState >= comp->maxState) { in xmlStreamCtxtAddState()
1835 comp->states[2 * comp->nbState] = idx; in xmlStreamCtxtAddState()
1836 comp->states[2 * comp->nbState++ + 1] = level; in xmlStreamCtxtAddState()
1837 return(comp->nbState - 1); in xmlStreamCtxtAddState()
1867 if ((stream == NULL) || (stream->nbState < 0)) in xmlStreamPushInternal()
1876 stream->nbState = 0; in xmlStreamPushInternal()
1954 m = stream->nbState; in xmlStreamPushInternal()
1961 stepNr = stream->states[2 * (stream->nbState -1)]; in xmlStreamPushInternal()
1965 if (stream->states[(2 * (stream->nbState -1)) + 1] < in xmlStreamPushInternal()
2302 for (i = stream->nbState -1; i >= 0; i--) { in xmlStreamPop()
2306 stream->nbState--; in xmlStreamPop()