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

/external/libxml2/include/libxml/
H A Dparser.h265 int maxatts; /* the size of the array */ member in struct:_xmlParserCtxt
/external/libxml2/
H A DHTMLparser.c3598 int maxatts; local
3614 maxatts = ctxt->maxatts;
3705 maxatts = 22; /* allow for 10 attrs by default */
3707 xmlMalloc(maxatts * sizeof(xmlChar *));
3715 ctxt->maxatts = maxatts;
3716 } else if (nbatts + 4 > maxatts) {
3719 maxatts *= 2;
3721 maxatts * sizeo
[all...]
H A Dparser.c1590 int maxatts; local
1593 maxatts = 55; /* allow for 10 attrs by default */
1595 xmlMalloc(maxatts * sizeof(xmlChar *));
1598 attallocs = (int *) xmlMalloc((maxatts / 5) * sizeof(int));
1601 ctxt->maxatts = maxatts;
1602 } else if (nr + 5 > ctxt->maxatts) {
1603 maxatts = (nr + 5) * 2;
1605 maxatts * sizeof(const xmlChar *));
1609 (maxatts /
8190 int maxatts = ctxt->maxatts; local
8871 int maxatts = ctxt->maxatts; local
[all...]

Completed in 484 milliseconds