Searched defs:maxTrans (Results 1 - 1 of 1) sorted by relevance

/external/libxml2/
H A Dxmlregexp.c228 int maxTrans; member in struct:_xmlAutomataState
1382 if (state->maxTrans == 0) {
1383 state->maxTrans = 8;
1384 state->trans = (xmlRegTrans *) xmlMalloc(state->maxTrans *
1388 state->maxTrans = 0;
1391 } else if (state->nbTrans >= state->maxTrans) {
1393 state->maxTrans *= 2;
1394 tmp = (xmlRegTrans *) xmlRealloc(state->trans, state->maxTrans *
1398 state->maxTrans /= 2;

Completed in 65 milliseconds