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

/external/libxml2/
H A Dxinclude.c70 int incMax; /* size of includes tab */ member in struct:_xmlXIncludeCtxt
248 if (ctxt->incMax == 0) {
249 ctxt->incMax = 4;
250 ctxt->incTab = (xmlXIncludeRefPtr *) xmlMalloc(ctxt->incMax *
258 if (ctxt->incNr >= ctxt->incMax) {
259 ctxt->incMax *= 2;
261 ctxt->incMax * sizeof(ctxt->incTab[0]));
299 ret->incMax = 0;
693 newctxt->incMax = ctxt->incMax;
[all...]
H A Drelaxng.c246 int incMax; /* Max depth of the parsing stack */ member in struct:_xmlRelaxNGParserCtxt
1455 ctxt->incMax = 4;
1458 (xmlRelaxNGIncludePtr *) xmlMalloc(ctxt->incMax *
1465 if (ctxt->incNr >= ctxt->incMax) {
1466 ctxt->incMax *= 2;
1469 ctxt->incMax *

Completed in 110 milliseconds