Searched refs:maxAtoms (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dxmlregexp.c249 int maxAtoms; member in struct:_xmlAutomata
1282 if (ctxt->maxAtoms == 0) {
1283 ctxt->maxAtoms = 4;
1284 ctxt->atoms = (xmlRegAtomPtr *) xmlMalloc(ctxt->maxAtoms *
1288 ctxt->maxAtoms = 0;
1291 } else if (ctxt->nbAtoms >= ctxt->maxAtoms) {
1293 ctxt->maxAtoms *= 2;
1294 tmp = (xmlRegAtomPtr *) xmlRealloc(ctxt->atoms, ctxt->maxAtoms *
1298 ctxt->maxAtoms /= 2;

Completed in 63 milliseconds