Home | History | Annotate | Download | only in libxml2

Lines Matching refs:nsMax

1597     if ((ctxt->nsMax == 0) || (ctxt->nsTab == NULL)) {
1598 ctxt->nsMax = 10;
1601 xmlMalloc(ctxt->nsMax * sizeof(xmlChar *));
1604 ctxt->nsMax = 0;
1607 } else if (ctxt->nsNr >= ctxt->nsMax) {
1609 ctxt->nsMax *= 2;
1611 ctxt->nsMax * sizeof(ctxt->nsTab[0]));
1614 ctxt->nsMax /= 2;