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

/vbox/src/libs/libxml2-2.6.31/
H A Dschematron.c146 int maxNamespaces; /* size of the array */ member in struct:_xmlSchematron
189 int maxNamespaces; /* size of the array */ member in struct:_xmlSchematronParserCtxt
801 ctxt->maxNamespaces = 10;
803 xmlMalloc(ctxt->maxNamespaces * 2 * sizeof(const xmlChar *));
810 } else if (ctxt->nbNamespaces + 2 >= ctxt->maxNamespaces) {
814 xmlRealloc((xmlChar **) ctxt->namespaces, ctxt->maxNamespaces * 4 *
822 ctxt->maxNamespaces *= 2;

Completed in 60 milliseconds