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

/external/libxml2/
H A Dparser.c1655 int maxatts; local
1658 maxatts = 55; /* allow for 10 attrs by default */
1660 xmlMalloc(maxatts * sizeof(xmlChar *));
1663 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int));
1666 ctxt->maxatts = maxatts;
1667 } else if (nr + 5 > ctxt->maxatts) {
1668 maxatts = (nr + 5) * 2;
1670 maxatts * sizeof(const xmlChar *));
1674 (maxatts /
8562 int maxatts = ctxt->maxatts; local
9306 int maxatts = ctxt->maxatts; local
[all...]
H A DHTMLparser.c3669 int maxatts; local
3685 maxatts = ctxt->maxatts;
3776 maxatts = 22; /* allow for 10 attrs by default */
3778 xmlMalloc(maxatts * sizeof(xmlChar *));
3786 ctxt->maxatts = maxatts;
3787 } else if (nbatts + 4 > maxatts) {
3790 maxatts *= 2;
3792 maxatts * sizeo
[all...]
H A DparserInternals.c1592 ctxt->maxatts = 0;
/external/libxml2/include/libxml/
H A Dparser.h265 int maxatts; /* the size of the array */ member in struct:_xmlParserCtxt

Completed in 82 milliseconds