Searched refs:nodeMax (Results 1 - 11 of 11) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxpath.h82 int nodeMax; /* size of the array as allocated */ member in struct:_xmlNodeSet
H A Dvalid.h90 int nodeMax; /* Max depth of the parsing stack */ member in struct:_xmlValidCtxt
H A Dparser.h204 int nodeMax; /* Max depth of the parsing stack */ member in struct:_xmlParserCtxt
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlibteac.c230 int nodeMax; local
249 nodeMin= nodeMax= hosts[0].id;
252 if (hosts[i].id>nodeMax) nodeMax= hosts[i].id;
254 nodeRange= (nodeMax-nodeMin) + 1;
/vbox/src/libs/libxml2-2.6.31/
H A Dxpath.c2028 if ((ret->nodesetval->nodeMax == 0) ||
3443 ret->nodeMax = XML_NODESET_DEFAULT;
3482 ret->nodeMax = size;
3556 if (cur->nodeMax == 0) {
3565 cur->nodeMax = XML_NODESET_DEFAULT;
3566 } else if (cur->nodeNr == cur->nodeMax) {
3569 temp = (xmlNodePtr *) xmlRealloc(cur->nodeTab, cur->nodeMax * 2 *
3575 cur->nodeMax *= 2;
3609 if (cur->nodeMax == 0) {
3618 cur->nodeMax
[all...]
H A DparserInternals.c1579 ctxt->nodeMax = 10;
1584 ctxt->nodeMax = 0;
1602 ctxt->nodeMax = 0;
1623 ctxt->nodeMax = 0;
1662 ctxt->vctxt.nodeMax = 0;
H A Dvalid.c434 if (ctxt->nodeMax <= 0) {
435 ctxt->nodeMax = 4;
437 (xmlNodePtr *) xmlMalloc(ctxt->nodeMax *
441 ctxt->nodeMax = 0;
445 if (ctxt->nodeNr >= ctxt->nodeMax) {
448 ctxt->nodeMax * 2 * sizeof(ctxt->nodeTab[0]));
453 ctxt->nodeMax *= 2;
5183 ctxt->nodeMax = 0;
5263 ctxt->nodeMax = 0;
5421 ctxt->nodeMax
[all...]
H A Dlegacy.c294 ctxt->vctxt.nodeMax = 0;
H A DHTMLparser.c4258 ctxt->nodeMax = 0;
4266 ctxt->nodeMax = 10;
4277 ctxt->nodeMax = 0;
H A Dparser.c1396 if (ctxt->nodeNr >= ctxt->nodeMax) {
1400 ctxt->nodeMax * 2 *
1407 ctxt->nodeMax *= 2;
11540 ctxt->vctxt.nodeMax = 0;
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml.c3414 nodeSet->nodeMax = (is_tuple
3418 = (xmlNodePtr *) xmlMalloc (nodeSet->nodeMax
3426 nodeSet->nodeMax * sizeof(xmlNodePtr));
3430 for (idx=0; idx < nodeSet->nodeMax; ++idx) {

Completed in 3687 milliseconds