Lines Matching refs:nbState
111 int nbState; /* number of states in the automata */ member
1466 printf("Stream: level %d, %d states: ", ctxt->level, ctxt->nbState); in xmlDebugStreamCtxt()
1471 for (i = 0;i < ctxt->nbState;i++) { in xmlDebugStreamCtxt()
1780 cur->nbState = 0; in xmlNewStreamCtxt()
1819 for (i = 0;i < comp->nbState;i++) { in xmlStreamCtxtAddState()
1826 if (comp->nbState >= comp->maxState) { in xmlStreamCtxtAddState()
1839 comp->states[2 * comp->nbState] = idx; in xmlStreamCtxtAddState()
1840 comp->states[2 * comp->nbState++ + 1] = level; in xmlStreamCtxtAddState()
1841 return(comp->nbState - 1); in xmlStreamCtxtAddState()
1871 if ((stream == NULL) || (stream->nbState < 0)) in xmlStreamPushInternal()
1880 stream->nbState = 0; in xmlStreamPushInternal()
1958 m = stream->nbState; in xmlStreamPushInternal()
1965 stepNr = stream->states[2 * (stream->nbState -1)]; in xmlStreamPushInternal()
1969 if (stream->states[(2 * (stream->nbState -1)) + 1] < in xmlStreamPushInternal()
2306 for (i = stream->nbState -1; i >= 0; i--) { in xmlStreamPop()
2310 stream->nbState--; in xmlStreamPop()