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

/external/chromium_org/third_party/libxml/src/
H A Dschematron.c199 int maxIncludes; /* size of the array */ member in struct:_xmlSchematronParserCtxt
736 ctxt->maxIncludes = 10;
738 xmlMalloc(ctxt->maxIncludes * 2 * sizeof(xmlNodePtr));
745 } else if (ctxt->nbIncludes + 2 >= ctxt->maxIncludes) {
749 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
757 ctxt->maxIncludes *= 2;
/external/libxml2/
H A Dschematron.c199 int maxIncludes; /* size of the array */ member in struct:_xmlSchematronParserCtxt
736 ctxt->maxIncludes = 10;
738 xmlMalloc(ctxt->maxIncludes * 2 * sizeof(xmlNodePtr));
745 } else if (ctxt->nbIncludes + 2 >= ctxt->maxIncludes) {
749 xmlRealloc(ctxt->includes, ctxt->maxIncludes * 4 *
757 ctxt->maxIncludes *= 2;

Completed in 131 milliseconds